mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 14:13:10 +00:00
[Windows, 3.x] Fix WM_CHAR processing code using Unicode char instead of Virtual key.
This commit is contained in:
parent
24ebc32126
commit
77fc88e9a6
@ -1221,7 +1221,7 @@ void OS_Windows::process_key_events() {
|
||||
k->set_control(ke.control);
|
||||
k->set_metakey(ke.meta);
|
||||
k->set_pressed(true);
|
||||
k->set_scancode(KeyMappingWindows::get_keysym(ke.wParam));
|
||||
k->set_scancode(KeyMappingWindows::get_keysym(MapVirtualKey((ke.lParam >> 16) & 0xFF, MAPVK_VSC_TO_VK)));
|
||||
k->set_physical_scancode(KeyMappingWindows::get_scansym((ke.lParam >> 16) & 0xFF, ke.lParam & (1 << 24)));
|
||||
k->set_unicode(ke.wParam);
|
||||
if (k->get_unicode() && gr_mem) {
|
||||
|
Loading…
Reference in New Issue
Block a user