aboutsummaryrefslogtreecommitdiff
path: root/sky
diff options
context:
space:
mode:
authorMax Horn2003-09-05 20:48:32 +0000
committerMax Horn2003-09-05 20:48:32 +0000
commit11193b0746b0ac2962c98255663dd1beef3fc2a1 (patch)
treee35e14acbfe673dc1db661ab17cbd7d37aa89274 /sky
parent5f2b0b697735652f91a88ed6e4d038d600412c95 (diff)
downloadscummvm-rg350-11193b0746b0ac2962c98255663dd1beef3fc2a1.tar.gz
scummvm-rg350-11193b0746b0ac2962c98255663dd1beef3fc2a1.tar.bz2
scummvm-rg350-11193b0746b0ac2962c98255663dd1beef3fc2a1.zip
cleaned up sound/mixer.h a bit; renamed some mixer methods for consistency
svn-id: r10018
Diffstat (limited to 'sky')
-rw-r--r--sky/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sky/sound.h b/sky/sound.h
index 3938632af7..4a388e6e2b 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->pauseChannels(true); };
- void fnUnPauseFx(void) { _mixer->pauseChannels(false); };
+ void fnPauseFx(void) { _mixer->pauseAll(true); };
+ void fnUnPauseFx(void) { _mixer->pauseAll(false); };
void fnStopFx(void);
void stopSpeech(void);
void checkFxQueue(void);