diff options
author | yenatch <yenatch@gmail.com> | 2015-02-08 00:03:32 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-10 00:53:03 -0800 |
commit | 8e033210694533bc1233a851d6914e1f0cb90232 (patch) | |
tree | 9c526de647aecbdb2dc81da6cb939ffa1d7d707d /battle/effects/metronome.asm | |
parent | 0683bc87701e6b4c357fb7b21927c17ceb87a6de (diff) |
Blindly use wram labels for everything except mobile, part 1.
Wram banks and mobile make this tough, since any address can secretly be a ghost.
As usual, mobile completely disregards 99% of the codebase. It's been ignored in kind.
Diffstat (limited to 'battle/effects/metronome.asm')
-rw-r--r-- | battle/effects/metronome.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/effects/metronome.asm b/battle/effects/metronome.asm index 97052a66c..213892945 100644 --- a/battle/effects/metronome.asm +++ b/battle/effects/metronome.asm @@ -5,11 +5,11 @@ BattleCommand34: ; 37418 call Function34548 jr nz, .asm_3742b - ld a, [$c689] + ld a, [wc689] push af call BattleCommand0a pop af - ld [$c689], a + ld [wc689], a .asm_3742b call Function37e36 |