From 2b7961759b3786725b95ee8f4a0b6e556091db7a Mon Sep 17 00:00:00 2001 From: luckytyphlosion Date: Sun, 30 Aug 2015 18:56:44 -0400 Subject: Fixes. --- engine/gamefreak.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/gamefreak.asm') diff --git a/engine/gamefreak.asm b/engine/gamefreak.asm index c2011535..acbd5fc9 100755 --- a/engine/gamefreak.asm +++ b/engine/gamefreak.asm @@ -39,7 +39,7 @@ AnimateShootingStar: ; 7004a (1c:404a) push bc .bigStarInnerLoop ld a, [hl] ; Y - add 4y + add 4 ; y ld [hli], a ld a, [hl] ; X add -4 @@ -221,7 +221,7 @@ MoveDownSmallStars: ; 70142 (1c:4142) ; Toggle the palette so that the lower star in the small stars tile blinks in ; and out. ld a, [rOBP1] ; $ff49 - xor $10100000 + xor %10100000 ld [rOBP1], a ; $ff49 call Func_3061 ld c, 3 -- cgit v1.3.1-sl0p