Skip to content

Commit

Permalink
Patched window.c to conform with input callback patch
Browse files Browse the repository at this point in the history
  • Loading branch information
wormyrocks committed May 19, 2020
1 parent 175e5b8 commit 6483cdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -1086,14 +1086,14 @@ GLFWAPI GLFWwindowcontentscalefun glfwSetWindowContentScaleCallback(GLFWwindow*
GLFWAPI void glfwPollEvents(void)
{
_GLFW_REQUIRE_INIT();
// _glfwPollAllJoysticks();
_glfwPollAllJoysticks();
_glfwPlatformPollEvents();
}

GLFWAPI void glfwWaitEvents(void)
{
_GLFW_REQUIRE_INIT();
// _glfwPollAllJoysticks();
_glfwPollAllJoysticks();
_glfwPlatformWaitEvents();
}

Expand Down

0 comments on commit 6483cdd

Please sign in to comment.