aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/saga/sfuncs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/saga/sfuncs.cpp b/engines/saga/sfuncs.cpp
index 723af34d4f..1697e6c92f 100644
--- a/engines/saga/sfuncs.cpp
+++ b/engines/saga/sfuncs.cpp
@@ -608,10 +608,10 @@ void Script::sfScriptGotoScene(SCRIPTFUNC_PARAMS) {
showVerb(); // calls setStatusText("")
if (_vm->getGameType() == GType_IHNM) {
- // Since it doesn't look like the IHNM scripts remove the
- // cutaway after the intro, this is probably the best place to do it
- if (_vm->_scene->currentChapterNumber() == 8)
- _vm->_anim->clearCutaway();
+ // There are some cutaways which are not removed by game scripts, like the cutaway
+ // after the intro of IHNM or the cutaway at the end of Ellen's part in the IHNM demo.
+ // Clear any remaining cutaways here
+ _vm->_anim->clearCutaway();
_vm->_gfx->setCursor(kCursorNormal);
}
}