[Scummvm-git-logs] scummvm master -> 0146ae2255e880cac46f52d9fdd445634d691e75
dreammaster
paulfgilbert at gmail.com
Mon Mar 4 06:25:07 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0146ae2255 GLK: Revert to passing ascii characters rather than scancodes to the sub-engines
Commit: 0146ae2255e880cac46f52d9fdd445634d691e75
https://github.com/scummvm/scummvm/commit/0146ae2255e880cac46f52d9fdd445634d691e75
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-03-03T21:24:55-08:00
Commit Message:
GLK: Revert to passing ascii characters rather than scancodes to the sub-engines
Changed paths:
engines/glk/events.cpp
diff --git a/engines/glk/events.cpp b/engines/glk/events.cpp
index f1ff970..efcf2c5 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;
}
}
More information about the Scummvm-git-logs
mailing list