瀏覽代碼

Fix function signature in null joystick backend

Related to #1043.
Michał Cichoń 8 年之前
父節點
當前提交
afbd589348
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/null_joystick.c

+ 1 - 1
src/null_joystick.c

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