From 7b62636e7515ea65deb90efb3cf4e24a85d3848c Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 25 Jun 2004 12:11:34 +0000 Subject: Delay only required when using subtitles svn-id: r14050 --- scumm/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm/sound.cpp') diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 8d433ee63e..af2f765401 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -476,7 +476,7 @@ void Sound::processSfxQueues() { } } - if (finished && _vm->_talkDelay == 0) { + if ((!ConfMan.getBool("subtitles") && finished) || (finished && _vm->_talkDelay == 0)) { _vm->stopTalk(); } } -- cgit v1.2.3