aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sky/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sky/sound.h b/sky/sound.h
index 266cc4a465..d2a824b4bf 100644
--- a/sky/sound.h
+++ b/sky/sound.h
@@ -68,8 +68,8 @@ public:
void fnStartFx(uint32 sound, uint8 channel);
bool startSpeech(uint16 textNum);
bool speechFinished(void) { return _ingameSpeech == 0; };
- void fnPauseFx(void) { _mixer->pause(true); };
- void fnUnPauseFx(void) { _mixer->pause(false); };
+ void fnPauseFx(void) { _mixer->pauseChannels(true); };
+ void fnUnPauseFx(void) { _mixer->pauseChannels(false); };
void fnStopFx(void);
void stopSpeech(void);
void checkFxQueue(void);