diff options
-rw-r--r-- | engines/groovie/script.cpp | 6 |
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 { |