summaryrefslogtreecommitdiff
path: root/engine/timeset.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-09 13:52:14 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2017-12-09 13:58:49 -0500
commit16c6696dd5d786eafca0beb855b55c00b25b01f4 (patch)
treee106ad7ab2aa6719393dc26623a524074c659124 /engine/timeset.asm
parent0b7d8d44ad6b911c4fe2e74b7d5bcbee971d7c90 (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 'engine/timeset.asm')
-rwxr-xr-xengine/timeset.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/timeset.asm b/engine/timeset.asm
index d560ae817..77ee5a0dd 100755
--- a/engine/timeset.asm
+++ b/engine/timeset.asm
@@ -10,9 +10,9 @@ InitClock: ; 90672 (24:4672)
ld a, $10
ld [MusicFade], a
ld a, MUSIC_NONE % $100
- ld [MusicFadeIDLo], a
+ ld [MusicFadeID], a
ld a, MUSIC_NONE / $100
- ld [MusicFadeIDHi], a
+ ld [MusicFadeID + 1], a
ld c, 8
call DelayFrames
call RotateFourPalettesLeft