Skip to content
Snippets Groups Projects
Commit c39ebfe1 authored by Camilla Löwy's avatar Camilla Löwy
Browse files

Fixed callback syntax in tutorial.

parent 434d0947
No related branches found
No related tags found
No related merge requests found
......@@ -290,7 +290,7 @@ void GLFWCALL character_callback(int character, int action);
@par New syntax
@code
void character_callback(int character);
void character_callback(GLFWwindow* window, int character);
@endcode
......@@ -325,7 +325,7 @@ void GLFWCALL mouse_wheel_callback(int position);
@par New syntax
@code
void scroll_callback(double xoffset, double yoffset);
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset);
@endcode
@par Removed functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment