SCUMM: (FT) - fix bug no. 12903 ("Sometimes skipping videos occur")

Prevent autosave during smush playback. Thanks to AndywinXp for the tip.
This commit is contained in:
athrxx
2021-09-09 00:30:28 +02:00
parent 412cd4ca4e
commit 743343be69
+1 -1
View File
@@ -132,7 +132,7 @@ bool ScummEngine::canSaveGameStateCurrently() {
// exception here. This the same forced overwriting of the
// script decisions as in ScummEngine::processKeyboard.
// Also, disable saving when a SAN video is playing.
if (_game.id == GID_CMI)
if (_game.version >= 7)
return !((ScummEngine_v7 *)this)->isSmushActive();
#endif