diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-09 13:52:14 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-09 13:58:49 -0500 |
commit | 16c6696dd5d786eafca0beb855b55c00b25b01f4 (patch) | |
tree | e106ad7ab2aa6719393dc26623a524074c659124 /misc/mobile_12.asm | |
parent | 0b7d8d44ad6b911c4fe2e74b7d5bcbee971d7c90 (diff) |
Start organizing WRAM
- Use db and dw when they're more meaningful than ds 1/2
- Use unions to group related labels
Diffstat (limited to 'misc/mobile_12.asm')
-rwxr-xr-x | misc/mobile_12.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/mobile_12.asm b/misc/mobile_12.asm index 69a5551a7..ea1e25bb8 100755 --- a/misc/mobile_12.asm +++ b/misc/mobile_12.asm @@ -40,9 +40,9 @@ InitMobileProfile: ; 4802f (12:402f) ld a, $5 ld [MusicFade], a ld a, MUSIC_MOBILE_ADAPTER_MENU % $100 - ld [MusicFadeIDLo], a + ld [MusicFadeID], a ld a, MUSIC_MOBILE_ADAPTER_MENU / $100 - ld [MusicFadeIDHi], a + ld [MusicFadeID + 1], a ld c, 20 call DelayFrames ld b, $1 |