aboutsummaryrefslogtreecommitdiff
path: root/scumm/input.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-11-19 19:50:22 +0000
committerPaweł Kołodziejski2004-11-19 19:50:22 +0000
commit20e9cf6f20dde6aed31b83698940786a783c2125 (patch)
tree51be5f26a2a58c008c4fa8a11f4941b1ed75a3e9 /scumm/input.cpp
parentc4a8b3c8b54022664fe231253f8314f0557a958f (diff)
downloadscummvm-rg350-20e9cf6f20dde6aed31b83698940786a783c2125.tar.gz
scummvm-rg350-20e9cf6f20dde6aed31b83698940786a783c2125.tar.bz2
scummvm-rg350-20e9cf6f20dde6aed31b83698940786a783c2125.zip
added walkthrough
svn-id: r15835
Diffstat (limited to 'scumm/input.cpp')
-rw-r--r--scumm/input.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/input.cpp b/scumm/input.cpp
index ed809142d7..100e5813f0 100644
--- a/scumm/input.cpp
+++ b/scumm/input.cpp
@@ -65,6 +65,8 @@ void ScummEngine::parseEvents() {
_debugger->attach();
else if (event.kbd.keycode == 's')
resourceStats();
+ else if (event.kbd.keycode == 'w')
+ _walkthroughDialog->runModal();
else
_keyPressed = event.kbd.ascii; // Normal key press, pass on to the game.
} else if (event.kbd.flags & OSystem::KBD_ALT) {