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/battlecenterm.asm | |
parent | bc6f0bc08a73a4afafc24d5349d56108d3971e2a (diff) |
Start using text predef macros
also sprite direction constants
Diffstat (limited to 'scripts/battlecenterm.asm')
-rwxr-xr-x | scripts/battlecenterm.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/battlecenterm.asm b/scripts/battlecenterm.asm index 997be7c1..dcb20d83 100755 --- a/scripts/battlecenterm.asm +++ b/scripts/battlecenterm.asm @@ -19,14 +19,14 @@ BattleCenterMScript: ; 4fd10 (13:7d10) ld [hli], a ld a, $a ld [hl], a - ld a, $8 + ld a, SPRITE_FACING_LEFT ld [wSpriteStateData1 + $19], a ld a, [$ffaa] cp $2 ret z ld a, $7 ld [wSpriteStateData2 + $15], a - ld a, $c + ld a, SPRITE_FACING_RIGHT ld [wSpriteStateData1 + $19], a ret |