diff options
author | Travis Howell | 2009-01-11 06:15:30 +0000 |
---|---|---|
committer | Travis Howell | 2009-01-11 06:15:30 +0000 |
commit | 4e15c8df3517661ae9ed092409d2057f424c79d6 (patch) | |
tree | 8aacc83bf3d82c865353e1547a0c7509efc71aa7 | |
parent | b107b7db4792ebc682bf9d140ac86da0df44414d (diff) | |
download | scummvm-rg350-4e15c8df3517661ae9ed092409d2057f424c79d6.tar.gz scummvm-rg350-4e15c8df3517661ae9ed092409d2057f424c79d6.tar.bz2 scummvm-rg350-4e15c8df3517661ae9ed092409d2057f424c79d6.zip |
Fix bug #1925322 - DIG: Subtitle speed affects speech when subtitles are off.
svn-id: r35820
-rw-r--r-- | engines/scumm/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp index 2807b086d3..e2d4b93fd9 100644 --- a/engines/scumm/sound.cpp +++ b/engines/scumm/sound.cpp @@ -516,7 +516,7 @@ void Sound::processSfxQueues() { } } - if ((!ConfMan.getBool("subtitles") && finished && _vm->_game.version <= 6) || (finished && _vm->_talkDelay == 0)) { + if ((!ConfMan.getBool("subtitles") && finished) || (finished && _vm->_talkDelay == 0)) { if (!(_vm->_game.version == 8 && _vm->VAR(_vm->VAR_HAVE_MSG) == 0)) _vm->stopTalk(); } |