diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index 5dd1898d3f..9beea1d698 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(); } } |