GLFW: Added missing key remappings.

This commit is contained in:
Branimir Karadžić 2017-05-29 16:31:36 -07:00
parent 33a83de1e1
commit 9e8131e377

View File

@ -328,6 +328,10 @@ namespace entry
s_translateKey[GLFW_KEY_PRINT_SCREEN] = Key::Print;
s_translateKey[GLFW_KEY_KP_ADD] = Key::Plus;
s_translateKey[GLFW_KEY_KP_SUBTRACT] = Key::Minus;
s_translateKey[GLFW_KEY_MINUS] = Key::Minus;
s_translateKey[GLFW_KEY_COMMA] = Key::Comma;
s_translateKey[GLFW_KEY_PERIOD] = Key::Period;
s_translateKey[GLFW_KEY_SLASH] = Key::Slash;
s_translateKey[GLFW_KEY_F1] = Key::F1;
s_translateKey[GLFW_KEY_F2] = Key::F2;
s_translateKey[GLFW_KEY_F3] = Key::F3;