From 86a8ca4efa63e1a33878ab2a73359786696b6653 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Sat, 28 Feb 2015 12:34:48 -0500 Subject: [PATCH] Fixed Uranus boss being placed right on top of you. Such that it's riding Uranus, you could say. Unfair and annoying. --- src/aliens.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aliens.cpp b/src/aliens.cpp index 8a1ed61..b45cc5b 100644 --- a/src/aliens.cpp +++ b/src/aliens.cpp @@ -449,8 +449,8 @@ static void getPreDefinedAliens() else if (currentGame.area == 21) { enemy[WC_BOSS].target = &player; - enemy[WC_BOSS].x = 400; - enemy[WC_BOSS].y = 300; + enemy[WC_BOSS].x = -screen->w / 2; + enemy[WC_BOSS].y = screen->h / 2; enemy[13].owner = &enemy[WC_BOSS]; enemy[13].dy = 20;