From 4779481f30c13a505763b4c1c996acb3e26b8bbc Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Mon, 29 Aug 2011 17:28:06 +0200 Subject: [PATCH] Smoother appearance of aliens on left hand side of title screen. --- code/title.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/title.cpp b/code/title.cpp index c9256ab..92c2812 100644 --- a/code/title.cpp +++ b/code/title.cpp @@ -257,7 +257,7 @@ int doTitle() blit(enemy[i].image[0], (int)enemy[i].x, (int)enemy[i].y); if (enemy[i].x > 830) { - enemy[i].x = -10; + enemy[i].x = -40; enemy[i].y = rand() % 580; enemy[i].dx = 1 + rand() % 3; }