aboutsummaryrefslogtreecommitdiff
path: root/engines/director/events.cpp
diff options
context:
space:
mode:
authorTobia Tesan2017-06-21 10:51:06 +0200
committerEugene Sandulenko2017-07-05 08:35:33 +0200
commit3059c95abd3944e6e628a32238dca1aeefecadbc (patch)
treec930ac5b6687b5f55dd4855f6bf2899b23f1679d /engines/director/events.cpp
parent137e10eef24785a1e39aaffb6fd992e09bc49531 (diff)
downloadscummvm-rg350-3059c95abd3944e6e628a32238dca1aeefecadbc.tar.gz
scummvm-rg350-3059c95abd3944e6e628a32238dca1aeefecadbc.tar.bz2
scummvm-rg350-3059c95abd3944e6e628a32238dca1aeefecadbc.zip
DIRECTOR: Handle keyDown in 1-ary processEvent
Might change semantics by calling the standard chain for input events. That is what the D4 docs suggest anyway.
Diffstat (limited to 'engines/director/events.cpp')
-rw-r--r--engines/director/events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/events.cpp b/engines/director/events.cpp
index 81c80dcc1e..b59202c1f6 100644
--- a/engines/director/events.cpp
+++ b/engines/director/events.cpp
@@ -110,7 +110,7 @@ void DirectorEngine::processEvents() {
warning("Keycode: %d", _keyCode);
}
- _lingo->processEvent(kEventKeyDown, kGlobalScript, 0);
+ _lingo->processEvent(kEventKeyDown);
break;
default: