aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-06-25 12:11:34 +0000
committerTravis Howell2004-06-25 12:11:34 +0000
commit7b62636e7515ea65deb90efb3cf4e24a85d3848c (patch)
tree38f9efea0efb0938d2977c37706582d5ae5c3b8b /scumm/sound.cpp
parentc9e293b76c79a676a2c7fa0e34cef6b0a543efce (diff)
downloadscummvm-rg350-7b62636e7515ea65deb90efb3cf4e24a85d3848c.tar.gz
scummvm-rg350-7b62636e7515ea65deb90efb3cf4e24a85d3848c.tar.bz2
scummvm-rg350-7b62636e7515ea65deb90efb3cf4e24a85d3848c.zip
Delay only required when using subtitles
svn-id: r14050
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
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();
}
}