Restrict to scumm7, caused invalid opcode errors when skipping cutscenes in comi sometimes and comi demo always.

svn-id: r12183
This commit is contained in:
Travis Howell 2004-01-06 15:56:27 +00:00
parent ceda8aec02
commit cda20b4125

View file

@ -1141,7 +1141,8 @@ void ScummEngine::abortCutscene() {
// Proper fix might be to let SMUSH/INSANE run from outside the script
// engine but that would require lots of changes and may actually have
// negative effects, too. So we cheat here, to fix bug #751670.
getScriptEntryPoint();
if (_version == 7)
getScriptEntryPoint();
}
}