diff options
author | xCrystal <rgr.crystal@gmail.com> | 2017-12-28 13:15:46 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2017-12-28 13:15:46 +0100 |
commit | 9457679af8d36a140db7b8832df595e8310e6bb4 (patch) | |
tree | d3bf8b1b424582f66add4f2b8d95f409cfafecb2 /home/flag.asm | |
parent | e2b378f5e32ea1416fbc9ac5e96d23be244e4a6b (diff) |
Prefix engine_flags wram addresses with w
Diffstat (limited to 'home/flag.asm')
-rw-r--r-- | home/flag.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/flag.asm b/home/flag.asm index 442c811c2..5f1d783af 100644 --- a/home/flag.asm +++ b/home/flag.asm @@ -7,7 +7,7 @@ ResetMapBufferEventFlags:: ; 2e50 ResetBikeFlags:: ; 2e56 xor a - ld hl, BikeFlags + ld hl, wBikeFlags ld [hli], a ld [hl], a ret @@ -22,7 +22,7 @@ ResetFlashIfOutOfCave:: ; 2e5d ret .asm_2e69 - ld hl, StatusFlags + ld hl, wStatusFlags res 2, [hl] ret ; 2e6f |