diff options
Diffstat (limited to 'engine/timeset.asm')
-rwxr-xr-x | engine/timeset.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/timeset.asm b/engine/timeset.asm index 417517005..e68f5930a 100755 --- a/engine/timeset.asm +++ b/engine/timeset.asm @@ -9,9 +9,9 @@ InitClock: ; 90672 (24:4672) ld [wSpriteUpdatesEnabled], a ld a, $10 ld [MusicFade], a - ld a, MUSIC_NONE % $100 + ld a, LOW(MUSIC_NONE) ld [MusicFadeID], a - ld a, MUSIC_NONE / $100 + ld a, HIGH(MUSIC_NONE) ld [MusicFadeID + 1], a ld c, 8 call DelayFrames |