aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/smush_mixer.cpp2
-rw-r--r--scumm/smush/smush_player.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index 02dc117b29..a20b5e68a3 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -41,7 +41,7 @@ SmushMixer::SmushMixer(SoundMixer *m) :
SmushMixer::~SmushMixer() {
for (int32 i = 0; i < SoundMixer::NUM_CHANNELS; i++) {
- _mixer->stop(_channels[i].mixer_index);
+ _mixer->stopChannel(_channels[i].mixer_index);
}
}
diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp
index e82c7d6ae8..fb99c8a668 100644
--- a/scumm/smush/smush_player.cpp
+++ b/scumm/smush/smush_player.cpp
@@ -290,7 +290,7 @@ void SmushPlayer::deinit() {
_base = NULL;
}
- _scumm->_mixer->stop(_IACTchannel);
+ _scumm->_mixer->stopChannel(_IACTchannel);
_scumm->_insaneState = false;
_scumm->abortCutscene();