diff options
Diffstat (limited to 'home/audio.asm')
-rw-r--r-- | home/audio.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/audio.asm b/home/audio.asm index 191366d0d..63489cf68 100644 --- a/home/audio.asm +++ b/home/audio.asm @@ -397,7 +397,7 @@ EnterMapMusic:: ; 3d03 push af xor a - ld [wc2c1], a + ld [wDontPlayMapMusicOnReload], a ld de, MUSIC_BICYCLE ld a, [PlayerState] cp PLAYER_BIKE @@ -422,7 +422,7 @@ EnterMapMusic:: ; 3d03 ; 3d2f TryRestartMapMusic:: ; 3d2f - ld a, [wc2c1] + ld a, [wDontPlayMapMusicOnReload] and a jr z, RestartMapMusic xor a @@ -431,7 +431,7 @@ TryRestartMapMusic:: ; 3d2f call PlayMusic call DelayFrame xor a - ld [wc2c1], a + ld [wDontPlayMapMusicOnReload], a ret ; 3d47 |