diff options
author | Travis Howell | 2005-04-04 11:58:42 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-04 11:58:42 +0000 |
commit | 172e558050b1a4ae112e184e0a682da0b4862677 (patch) | |
tree | 509eee78d55e5b96866106635009c9dcc395883b | |
parent | 74c124628a223aeead189a623f3fbac75afda538 (diff) | |
download | scummvm-rg350-172e558050b1a4ae112e184e0a682da0b4862677.tar.gz scummvm-rg350-172e558050b1a4ae112e184e0a682da0b4862677.tar.bz2 scummvm-rg350-172e558050b1a4ae112e184e0a682da0b4862677.zip |
Missed a function.
svn-id: r17374
-rw-r--r-- | scumm/sound.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index baedf5df3e..fe71f936b0 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -583,6 +583,8 @@ void Sound::processSfxQueues() { if (_vm->_imuseDigital) { finished = !isSoundRunning(kTalkSoundID); + } else if (_vm->_heversion >= 70) { + finished = !isSoundRunning(1); } else { finished = !_vm->_mixer->isSoundHandleActive(_talkChannelHandle); } |