aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
diff options
context:
space:
mode:
authorScott Thomas2011-11-29 22:29:32 +1030
committerScott Thomas2011-11-29 22:31:26 +1030
commitc23f8f856c7e5a2fa11722870607d876c5894e18 (patch)
tree4d193b5287d5e2bb48955d0c8343df503ed61bbb /engines/groovie
parentef31ac6db0fe91afcaa9ac58d2f7a36fa6ba7af6 (diff)
downloadscummvm-rg350-c23f8f856c7e5a2fa11722870607d876c5894e18.tar.gz
scummvm-rg350-c23f8f856c7e5a2fa11722870607d876c5894e18.tar.bz2
scummvm-rg350-c23f8f856c7e5a2fa11722870607d876c5894e18.zip
GROOVIE: Prefer 'mask' animations to run at regular speed.
Not all 'mask' animations have sound, so need to mark preference for regular speed for both 'mask' and 'teeth' animations.
Diffstat (limited to 'engines/groovie')
-rw-r--r--engines/groovie/script.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp
index 9003a58ab8..a8b4417459 100644
--- a/engines/groovie/script.cpp
+++ b/engines/groovie/script.cpp
@@ -590,9 +590,9 @@ bool Script::playvideofromref(uint32 fileref) {
if (_videoFile) {
_videoRef = fileref;
- // If teeth cursor, and in main script, mark video prefer low-speed
- // filename check as sometimes teeth used for puzzle movements (bishops)
- if (_version == kGroovieT7G && _lastCursor == 7 && _scriptFile == "script.grv")
+ // If teeth or mask cursor, and in main script, mark video prefer low-speed.
+ // Filename check as sometimes teeth used for puzzle movements (bishops)
+ if (_version == kGroovieT7G && (_lastCursor == 7 || _lastCursor == 4) && _scriptFile == "script.grv")
_bitflags |= (1 << 15);
_vm->_videoPlayer->load(_videoFile, _bitflags);
} else {