diff options
author | Filippos Karapetis | 2007-08-31 07:20:57 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-08-31 07:20:57 +0000 |
commit | dd3157614f7babab5ac970d764cf32ff784548f8 (patch) | |
tree | 8e72a08eedc2936f25547f3c7574aedc43e4e67d | |
parent | 4be77cb45eaf0a864295acac50eac7bd2ee1c2f4 (diff) | |
download | scummvm-rg350-dd3157614f7babab5ac970d764cf32ff784548f8.tar.gz scummvm-rg350-dd3157614f7babab5ac970d764cf32ff784548f8.tar.bz2 scummvm-rg350-dd3157614f7babab5ac970d764cf32ff784548f8.zip |
Some cleanup for the IHNM demo
svn-id: r28766
-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); } |