diff options
| author | Clownacy <Clownacy@users.noreply.github.com> | 2017-10-14 12:30:23 +0100 |
|---|---|---|
| committer | Clownacy <Clownacy@users.noreply.github.com> | 2017-10-14 12:30:23 +0100 |
| commit | 7b8c3aa990240e320a16c9e97bd0bef1ded53e06 (patch) | |
| tree | 919b47dc3b49d41a9a36beab8f2b30ba74b25c80 /_inc | |
| parent | 0b323b152dc7843b2b2861dbd11b64ebdab07e2b (diff) | |
More sound driver standardisation
Part of #9
Diffstat (limited to '_inc')
| -rw-r--r-- | _inc/PauseGame.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_inc/PauseGame.asm b/_inc/PauseGame.asm index cc34b2c..af53518 100644 --- a/_inc/PauseGame.asm +++ b/_inc/PauseGame.asm @@ -16,7 +16,7 @@ PauseGame: Pause_StopGame: move.w #1,(f_pause).w ; freeze time - move.b #1,(v_snddriver_ram+f_stopmusic).w ; pause music + move.b #1,(v_snddriver_ram+f_pausemusic).w ; pause music Pause_Loop: move.b #$10,(v_vbla_routine).w @@ -41,7 +41,7 @@ Pause_ChkStart: beq.s Pause_Loop ; if not, branch Pause_EndMusic: - move.b #$80,(v_snddriver_ram+f_stopmusic).w + move.b #$80,(v_snddriver_ram+f_pausemusic).w Unpause: move.w #0,(f_pause).w ; unpause the game @@ -52,6 +52,6 @@ Pause_DoNothing: Pause_SlowMo: move.w #1,(f_pause).w - move.b #$80,(v_snddriver_ram+f_stopmusic).w + move.b #$80,(v_snddriver_ram+f_pausemusic).w rts ; End of function PauseGame |
