mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
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:
parent
ef31ac6db0
commit
c23f8f856c
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user