diff options
-rw-r--r-- | scumm/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index af2f765401..85788b035a 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -476,7 +476,7 @@ void Sound::processSfxQueues() { } } - if ((!ConfMan.getBool("subtitles") && finished) || (finished && _vm->_talkDelay == 0)) { + if ((!ConfMan.getBool("subtitles") && finished && _vm->_version <= 6) || (finished && _vm->_talkDelay == 0)) { _vm->stopTalk(); } } |