aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index fae0cc596c..baedf5df3e 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -792,9 +792,9 @@ void Sound::startTalkSound(uint32 offset, uint32 b, int mode, SoundHandle *handl
void Sound::stopTalkSound() {
if (_sfxMode & 2) {
if (_vm->_imuseDigital) {
- _vm->_mixer->stopID(kTalkSoundID);
+ _vm->_imuseDigital->stopSound(kTalkSoundID);
} else if (_vm->_heversion >= 70) {
- _vm->_imuseDigital->stopSound(1);
+ _vm->_mixer->stopID(1);
} else {
_vm->_mixer->stopHandle(_talkChannelHandle);
}