diff options
author | Indah Sylvia <ISylvox@yahoo.com> | 2017-10-14 15:32:12 +0700 |
---|---|---|
committer | Indah Sylvia <ISylvox@yahoo.com> | 2017-10-14 15:41:57 +0700 |
commit | 53facb07cf60aa516da37c44f88e7c877b07612c (patch) | |
tree | c84db5513d701b65be47882e74916a235f640424 /platform | |
parent | e8f8359b2edd583480218b7348cdbe43e959a16e (diff) |
Fixed wrong Virtual-KeyCode(0x12) pair on Windows platform (#12073)
Diffstat (limited to 'platform')
-rw-r--r-- | platform/windows/key_mapping_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/key_mapping_win.cpp b/platform/windows/key_mapping_win.cpp index 57f8e965de..76bb5d5723 100644 --- a/platform/windows/key_mapping_win.cpp +++ b/platform/windows/key_mapping_win.cpp @@ -50,7 +50,7 @@ static _WinTranslatePair _vk_to_keycode[] = { { KEY_CONTROL, VK_CONTROL }, //(0x11) - { KEY_MENU, VK_MENU }, //(0x12) + { KEY_ALT, VK_MENU }, //(0x12) { KEY_PAUSE, VK_PAUSE }, //(0x13) |