From cda20b4125725c83670ab6cc68c68b85717954e6 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 6 Jan 2004 15:56:27 +0000 Subject: [PATCH] Restrict to scumm7, caused invalid opcode errors when skipping cutscenes in comi sometimes and comi demo always. svn-id: r12183 --- scumm/script.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scumm/script.cpp b/scumm/script.cpp index 5dd1898d3f7..9beea1d6983 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -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(); } }