Disable mouse button limit in the window test

This commit is contained in:
Grzesiek11 2024-02-11 20:34:54 +01:00
parent e23231de5d
commit 749616884f
No known key found for this signature in database
GPG Key ID: 4A5445FB68CDB5C4

View File

@ -77,7 +77,7 @@ int main(int argc, char** argv)
glfwTerminate(); glfwTerminate();
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
glfwSetInputMode(window, GLFW_DISABLE_MOUSE_BUTTON_LIMIT, GLFW_FALSE); glfwSetInputMode(window, GLFW_DISABLE_MOUSE_BUTTON_LIMIT, GLFW_TRUE);
glfwMakeContextCurrent(window); glfwMakeContextCurrent(window);
gladLoadGL(glfwGetProcAddress); gladLoadGL(glfwGetProcAddress);