diff options
author | Sven Hesse | 2011-01-22 09:31:02 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-22 09:31:02 +0000 |
commit | 5660b42a897018c4c6e92ed5f6b63142024f8cc5 (patch) | |
tree | 2f10bc3cfb8477564220c52cb3a9facba0f88bcb /engines/gob | |
parent | 95e557c564fb05f95f5b9c682a5c3d9b2db913f0 (diff) | |
download | scummvm-rg350-5660b42a897018c4c6e92ed5f6b63142024f8cc5.tar.gz scummvm-rg350-5660b42a897018c4c6e92ed5f6b63142024f8cc5.tar.bz2 scummvm-rg350-5660b42a897018c4c6e92ed5f6b63142024f8cc5.zip |
GOB: Another (?) non-blocking video flag
This fixes the intro needing an extra ESC.
Interestingly, the intro movie is actually interactive. You can
influence the paths Max takes by pressed the arrow keys at the
right times.
svn-id: r55411
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp index 8916ee246a..01301ebe0a 100644 --- a/engines/gob/inter_v6.cpp +++ b/engines/gob/inter_v6.cpp @@ -168,7 +168,7 @@ void Inter_v6::o6_playVmdOrMusic() { if (props.startFrame == -2) { props.startFrame = 0; props.lastFrame = -1; - close = false; + props.flags &= ~0x1000; } _vm->_vidPlayer->evaluateFlags(props, true); |