diff options
author | dannye <corrnondacqb@yahoo.com> | 2015-07-04 00:44:12 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2015-07-04 00:47:29 -0500 |
commit | f702fc7840e30f00c840ce619a1ea15d763438de (patch) | |
tree | e28c8b27278228f95139f7a73daf214ac680014e /scripts/route22.asm | |
parent | bc6f0bc08a73a4afafc24d5349d56108d3971e2a (diff) |
Start using text predef macros
also sprite direction constants
Diffstat (limited to 'scripts/route22.asm')
-rwxr-xr-x | scripts/route22.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/route22.asm b/scripts/route22.asm index 88f69bea..7d70924b 100755 --- a/scripts/route22.asm +++ b/scripts/route22.asm @@ -148,13 +148,13 @@ Route22Script2: ; 50fb5 (14:4fb5) cp $ff jp z, Route22Script_50ece ld a, [wSpriteStateData1 + 9] - and a - jr nz, .asm_50fc7 - ld a, $4 - jr .asm_50fc9 -.asm_50fc7 - ld a, $c -.asm_50fc9 + and a ; cp SPRITE_FACING_DOWN + jr nz, .notDown + ld a, SPRITE_FACING_UP + jr .done +.notDown + ld a, SPRITE_FACING_RIGHT +.done ld [$ff8d], a ld a, $1 ld [$ff8c], a |