aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorEugene Sandulenko2005-08-12 20:06:41 +0000
committerEugene Sandulenko2005-08-12 20:06:41 +0000
commit644209261691f8850d0c8f8cd7d6c941c5ec0cb6 (patch)
tree48f016c77bacf97520ef155ab7e67407b82ec05b /saga
parent1ed8d450f02730156f0db2d33a6f870916863513 (diff)
downloadscummvm-rg350-644209261691f8850d0c8f8cd7d6c941c5ec0cb6.tar.gz
scummvm-rg350-644209261691f8850d0c8f8cd7d6c941c5ec0cb6.tar.bz2
scummvm-rg350-644209261691f8850d0c8f8cd7d6c941c5ec0cb6.zip
Fix bug #1257530 "ITE: Mouse pointer visible during cutscenes"
svn-id: r18672
Diffstat (limited to 'saga')
-rw-r--r--saga/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 60f7ea1f2d..46e2941c87 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -214,13 +214,13 @@ int Interface::activate() {
_active = true;
_vm->_script->_skipSpeeches = false;
_vm->_actor->_protagonist->_targetObject = ID_NOTHING;
- _vm->_gfx->showCursor(true);
unlockMode();
if (_panelMode == kPanelMain){
_saveReminderState = 1;
}
draw();
}
+ _vm->_gfx->showCursor(true);
return SUCCESS;
}
@@ -228,10 +228,10 @@ int Interface::activate() {
int Interface::deactivate() {
if (_active) {
_active = false;
- _vm->_gfx->showCursor(false);
lockMode();
setMode(kPanelNull);
}
+ _vm->_gfx->showCursor(false);
return SUCCESS;
}