diff options
-rw-r--r-- | engines/glk/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/events.cpp b/engines/glk/events.cpp index f1ff970e91..efcf2c5bc6 100644 --- a/engines/glk/events.cpp +++ b/engines/glk/events.cpp @@ -323,7 +323,7 @@ void Events::handleKeyDown(const Common::KeyState &ks) { windows.inputHandleKey(keycode_Func12); break; default: - windows.inputHandleKey(ks.keycode); + windows.inputHandleKey(ks.ascii); break; } } |