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.
This commit is contained in:
Scott Thomas 2011-11-29 22:29:32 +10:30
parent ef31ac6db0
commit c23f8f856c

View File

@ -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 {