aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2011-01-22 16:29:54 +0000
committerSven Hesse2011-01-22 16:29:54 +0000
commitcbbafc962d6a35d9b8744cd6d0094dfd976dc30f (patch)
tree96018a965a0edd60697c77befea101d6b9ee0adb /engines/gob/inter_v6.cpp
parent755558de042d76751e4684fb8e56bd9463cfef89 (diff)
downloadscummvm-rg350-cbbafc962d6a35d9b8744cd6d0094dfd976dc30f.tar.gz
scummvm-rg350-cbbafc962d6a35d9b8744cd6d0094dfd976dc30f.tar.bz2
scummvm-rg350-cbbafc962d6a35d9b8744cd6d0094dfd976dc30f.zip
GOB: Extend the good-measure wait to all videos with sound
Fixes a glitch in Bambou, where the intro movie is cut off to soon. svn-id: r55432
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index 77affee141..2acc4baf05 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -183,7 +183,7 @@ void Inter_v6::o6_playVmdOrMusic() {
_vm->_vidPlayer->play(slot, props);
if (close && !props.noBlock) {
- if ((props.flags & VideoPlayer::kFlagNoVideo) && (!props.canceled))
+ if (props.hasSound && !props.canceled)
_vm->_util->longDelay(500);
_vm->_vidPlayer->closeVideo(slot);