diff options
-rw-r--r-- | engines/saga/animation.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/engines/saga/animation.cpp b/engines/saga/animation.cpp index 57b30783a6..483d4c69bd 100644 --- a/engines/saga/animation.cpp +++ b/engines/saga/animation.cpp @@ -305,15 +305,9 @@ void Anim::clearCutaway(void) { } _vm->_interface->restoreMode(); - - if (_vm->getGameId() != GID_IHNM_DEMO) { - _vm->_gfx->showCursor(true); - } else { - if (_vm->_scene->isNonInteractiveIHNMDemoPart()) { - // Don't show the mouse cursor in the non-interactive part of the IHNM demo - } else { - _vm->_gfx->showCursor(true); - } + _vm->_gfx->showCursor(true); + + if (_vm->getGameId() == GID_IHNM_DEMO) { // Enable the save reminder state after each cutaway for the IHNM demo _vm->_interface->setSaveReminderState(true); } |