mirror of
https://github.com/gwm17/glfw.git
synced 2025-04-03 07:48:51 -04:00
parent
e528a8c7a4
commit
04a439a0a0
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
// Translate an X11 key code to a GLFW key code.
|
// Translate an X11 key code to a GLFW key code.
|
||||||
//
|
//
|
||||||
static int translateKey(int scancode)
|
static int translateKeyCode(int scancode)
|
||||||
{
|
{
|
||||||
int keySym;
|
int keySym;
|
||||||
|
|
||||||
|
@ -317,7 +317,7 @@ static void createKeyTables(void)
|
||||||
for (scancode = 0; scancode < 256; scancode++)
|
for (scancode = 0; scancode < 256; scancode++)
|
||||||
{
|
{
|
||||||
if (_glfw.x11.publicKeys[scancode] < 0)
|
if (_glfw.x11.publicKeys[scancode] < 0)
|
||||||
_glfw.x11.publicKeys[scancode] = translateKey(scancode);
|
_glfw.x11.publicKeys[scancode] = translateKeyCode(scancode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user