From cf2d260b2a924b0851bb068f9163cded0476bd35 Mon Sep 17 00:00:00 2001 From: mewmew Date: Thu, 6 Jun 2013 19:49:23 +0200 Subject: [PATCH] Update parameter names in documentation of scroll callback. --- 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 edffe2a4..e1c81418 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -732,8 +732,8 @@ typedef void (* GLFWcursorenterfun)(GLFWwindow*,int); * This is the function signature for scroll callback functions. * * @param[in] window The window that received the event. - * @param[in] xpos The scroll offset along the x-axis. - * @param[in] ypos The scroll offset along the y-axis. + * @param[in] xoffset The scroll offset along the x-axis. + * @param[in] yoffset The scroll offset along the y-axis. * * @sa glfwSetScrollCallback *