Win32: Fix keypad equals key reported as unknown

Fixes #1315.
Closes #1316.
This commit is contained in:
Doug Binks 2018-08-24 14:07:34 +02:00 committed by Camilla Löwy
parent 338afe3c6d
commit ed12a54afd
1 changed files with 1 additions and 0 deletions

View File

@ -309,6 +309,7 @@ static void createKeyTables(void)
_glfw.win32.keycodes[0x053] = GLFW_KEY_KP_DECIMAL;
_glfw.win32.keycodes[0x135] = GLFW_KEY_KP_DIVIDE;
_glfw.win32.keycodes[0x11C] = GLFW_KEY_KP_ENTER;
_glfw.win32.keycodes[0x059] = GLFW_KEY_KP_EQUAL;
_glfw.win32.keycodes[0x037] = GLFW_KEY_KP_MULTIPLY;
_glfw.win32.keycodes[0x04A] = GLFW_KEY_KP_SUBTRACT;