aboutsummaryrefslogtreecommitdiff
path: root/saga/input.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-11-20 00:05:50 +0000
committerEugene Sandulenko2004-11-20 00:05:50 +0000
commite5cc4c629aac5d40f629155679c0c6cd8dc169e4 (patch)
tree9caf4b0e0b5df0bdc0bec81d4daf9fc663bfb1f2 /saga/input.cpp
parent5748227adcc17e76eab0c33e99bb978b170b3de0 (diff)
downloadscummvm-rg350-e5cc4c629aac5d40f629155679c0c6cd8dc169e4.tar.gz
scummvm-rg350-e5cc4c629aac5d40f629155679c0c6cd8dc169e4.tar.bz2
scummvm-rg350-e5cc4c629aac5d40f629155679c0c6cd8dc169e4.zip
o Restore cursor after walkthrough
o Add cursor events o Hide cursor during intro svn-id: r15844
Diffstat (limited to 'saga/input.cpp')
-rw-r--r--saga/input.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/saga/input.cpp b/saga/input.cpp
index 0cf467fb96..88d4c7193f 100644
--- a/saga/input.cpp
+++ b/saga/input.cpp
@@ -42,8 +42,10 @@ int SagaEngine::processInput() {
switch (event.event_code) {
case OSystem::EVENT_KEYDOWN:
- if ((event.kbd.flags == OSystem::KBD_CTRL) && (event.kbd.keycode == 'w'))
+ if ((event.kbd.flags == OSystem::KBD_CTRL) && (event.kbd.keycode == 'w')) {
_walkthroughDialog->runModal();
+ _gfx->updateCursor();
+ }
if (_vm->_console->isActive()) {
in_char = event.kbd.ascii;
switch (event.kbd.keycode) {