This commit is contained in:
Branimir Karadžić 2017-06-03 14:02:01 -07:00
parent 18bbec1152
commit cf6087bdb6
2 changed files with 2 additions and 1 deletions

View File

@ -327,6 +327,7 @@ namespace entry
s_translateKey[GLFW_KEY_END] = Key::End;
s_translateKey[GLFW_KEY_PRINT_SCREEN] = Key::Print;
s_translateKey[GLFW_KEY_KP_ADD] = Key::Plus;
s_translateKey[GLFW_KEY_EQUAL] = Key::Plus;
s_translateKey[GLFW_KEY_KP_SUBTRACT] = Key::Minus;
s_translateKey[GLFW_KEY_MINUS] = Key::Minus;
s_translateKey[GLFW_KEY_COMMA] = Key::Comma;

View File

@ -381,7 +381,7 @@ namespace entry
s_translateKey[VK_OEM_7] = Key::Quote;
s_translateKey[VK_OEM_COMMA] = Key::Comma;
s_translateKey[VK_OEM_PERIOD] = Key::Period;
s_translateKey[VK_DECIMAL] = Key::Period;
s_translateKey[VK_DECIMAL] = Key::Period;
s_translateKey[VK_OEM_2] = Key::Slash;
s_translateKey[VK_OEM_5] = Key::Backslash;
s_translateKey[VK_OEM_3] = Key::Tilde;