From 2f4271a2b347dae9a0be7773c012630f0f01feb3 Mon Sep 17 00:00:00 2001 From: biller23 Date: Wed, 18 Mar 2015 21:02:29 +0100 Subject: [PATCH] typo ImGui_ImplGlfwGL3_KeyCallback() --- examples/opengl3_example/imgui_impl_glfw_gl3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/opengl3_example/imgui_impl_glfw_gl3.h b/examples/opengl3_example/imgui_impl_glfw_gl3.h index 7b181577..81b59528 100644 --- a/examples/opengl3_example/imgui_impl_glfw_gl3.h +++ b/examples/opengl3_example/imgui_impl_glfw_gl3.h @@ -16,5 +16,5 @@ bool ImGui_ImplGlfwGL3_CreateDeviceObjects(); // You can also handle inputs yourself and use those as a reference. void ImGui_ImplGlfwGL3_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods); void ImGui_ImplGlfwGL3_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset); -void ImGui_ImplGlFwGL3_KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods); +void ImGui_ImplGlfwGL3_KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods); void ImGui_ImplGlfwGL3_CharCallback(GLFWwindow* window, unsigned int c);