From 74c124628a223aeead189a623f3fbac75afda538 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 4 Apr 2005 11:47:38 +0000 Subject: Muddled ifs svn-id: r17373 --- scumm/sound.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scumm/sound.cpp') 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); } -- cgit v1.2.3