From 5779a3dfc5ddc05fc854e55d03da8ba07eede0a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Cicho=C5=84?= Date: Wed, 12 Jul 2017 23:24:08 +0200 Subject: [PATCH] Match _glfwPlatformPollJoystick() to one in internal.h for null driver. --- src/null_joystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/null_joystick.c b/src/null_joystick.c index 2311d91f7..afd65e15d 100644 --- a/src/null_joystick.c +++ b/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; }