Fix unused vars warning
This commit is contained in:
parent
851145e69e
commit
29dd766a67
1 changed files with 2 additions and 0 deletions
2
glfw/input.c
vendored
2
glfw/input.c
vendored
|
|
@ -916,6 +916,8 @@ GLFWAPI void glfwUpdateIMEState(GLFWwindow* handle, int which, int a, int b, int
|
|||
_GLFW_REQUIRE_INIT();
|
||||
#if defined(_GLFW_X11) || defined(_GLFW_WAYLAND)
|
||||
_glfwPlatformUpdateIMEState(window, which, a, b, c, d);
|
||||
#else
|
||||
(void)window; (void)which; (void)a; (void)b; (void)c; (void)d;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue