From 4bd81b436db54d954107708fc92e2e884b6e035b Mon Sep 17 00:00:00 2001 From: Philippe Groarke Date: Sun, 22 Sep 2019 15:07:45 -0400 Subject: [PATCH] joystickcallback : Fix doc. --- include/GLFW/glfw3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 8a379d9c9..2ae06052e 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1618,7 +1618,7 @@ typedef void (* GLFWjoystickfun)(int,int); * This is the function pointer type for window joystick configuration callbacks. * Even though joystick configuration callbacks are global events, you may * use this version of the callback to recieve valid window pointers in - * your callback. Must be used with appropriate glfwSetJoystickCallback overload. + * your callback. Must be used with appropriate glfwSetWindowJoystickCallback overload. * * A joystick configuration callback function has the following signature: * @code @@ -1631,7 +1631,7 @@ typedef void (* GLFWjoystickfun)(int,int); * releases may add more events. * * @sa @ref joystick_event - * @sa @ref glfwSetJoystickCallback + * @sa @ref glfwSetWindowJoystickCallback * * @since Added in version 3.4. *