Fix the lookup of XkbLookupKeySym, which has Sym capitalised for some reason, unlike XkbKeycodeToKeysym

This commit is contained in:
Yukari Hafner 2026-06-29 11:47:21 +02:00
parent 9c0d487ff6
commit 80847e0e36
No known key found for this signature in database
GPG key ID: A65ADD33A582C0E2

View file

@ -1499,7 +1499,7 @@ int _glfwInitX11(void)
_glfw.x11.xkb.KeycodeToKeysym = (PFN_XkbKeycodeToKeysym)
_glfwPlatformGetModuleSymbol(_glfw.x11.xlib.handle, "XkbKeycodeToKeysym");
_glfw.x11.xkb.LookupKeysym = (PFN_XkbLookupKeysym)
_glfwPlatformGetModuleSymbol(_glfw.x11.xlib.handle, "XkbLookupKeysym");
_glfwPlatformGetModuleSymbol(_glfw.x11.xlib.handle, "XkbLookupKeySym");
_glfw.x11.xkb.QueryExtension = (PFN_XkbQueryExtension)
_glfwPlatformGetModuleSymbol(_glfw.x11.xlib.handle, "XkbQueryExtension");
_glfw.x11.xkb.SelectEventDetails = (PFN_XkbSelectEventDetails)