Browse Source

Fix function signature in null joystick backend

Related to #1043.
Michał Cichoń 8 years ago
parent
commit
afbd589348
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/null_joystick.c

+ 1 - 1
src/null_joystick.c

@@ -31,7 +31,7 @@
 //////                       GLFW platform API                      //////
 //////////////////////////////////////////////////////////////////////////
 
-int _glfwPlatformPollJoystick(int jid, int mode)
+int _glfwPlatformPollJoystick(_GLFWjoystick* js, int mode)
 {
     return GLFW_FALSE;
 }