aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2002-12-11 20:56:49 +0000
committerMax Horn2002-12-11 20:56:49 +0000
commit89fa8addef599bd5c58804258f0e6933bfce516e (patch)
tree0dded2cc407ccae83ade8c5430c79add36b68a73
parent6e5f8e0111d913359dcd94d79a65205d8457a8ed (diff)
downloadscummvm-rg350-89fa8addef599bd5c58804258f0e6933bfce516e.tar.gz
scummvm-rg350-89fa8addef599bd5c58804258f0e6933bfce516e.tar.bz2
scummvm-rg350-89fa8addef599bd5c58804258f0e6933bfce516e.zip
Patch #652194: Handling Ctrl-<key>
svn-id: r5907
-rw-r--r--scumm/scummvm.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 02a1d69e7c..35a7783653 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1413,6 +1413,8 @@ void Scumm::waitForTimer(int msec_delay) {
g_debugger.attach(this);
else if (event.kbd.keycode=='s')
resourceStats();
+ else
+ _keyPressed = event.kbd.ascii; // Normal key press, pass on to the game.
} else
_keyPressed = event.kbd.ascii; // Normal key press, pass on to the game.
break;