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 /event | |
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 'event')
-rwxr-xr-x | event/halloffame.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/event/halloffame.asm b/event/halloffame.asm index e1870b8ac..5e0a20378 100755 --- a/event/halloffame.asm +++ b/event/halloffame.asm @@ -37,9 +37,9 @@ HallOfFame:: ; 0x8640e RedCredits:: ; 86455 ld a, MUSIC_NONE % $100 - ld [MusicFadeIDLo], a + ld [MusicFadeID], a ld a, MUSIC_NONE / $100 - ld [MusicFadeIDHi], a + ld [MusicFadeID + 1], a ld a, 10 ld [MusicFade], a callba FadeOutPalettes @@ -60,9 +60,9 @@ RedCredits:: ; 86455 HallOfFame_FadeOutMusic: ; 8648e ld a, MUSIC_NONE % $100 - ld [MusicFadeIDLo], a + ld [MusicFadeID], a ld a, MUSIC_NONE / $100 - ld [MusicFadeIDHi], a + ld [MusicFadeID + 1], a ld a, 10 ld [MusicFade], a callba FadeOutPalettes |