1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00

Fixed callback syntax in tutorial.

This commit is contained in:
Camilla Berglund 2014-07-23 23:48:24 +02:00
parent 434d0947e5
commit c39ebfe1b8

View File

@ -290,7 +290,7 @@ void GLFWCALL character_callback(int character, int action);
@par New syntax @par New syntax
@code @code
void character_callback(int character); void character_callback(GLFWwindow* window, int character);
@endcode @endcode
@ -325,7 +325,7 @@ void GLFWCALL mouse_wheel_callback(int position);
@par New syntax @par New syntax
@code @code
void scroll_callback(double xoffset, double yoffset); void scroll_callback(GLFWwindow* window, double xoffset, double yoffset);
@endcode @endcode
@par Removed functions @par Removed functions