From 749616884f91ed8129ceb5d9881142c0b8aa6452 Mon Sep 17 00:00:00 2001 From: Grzesiek11 Date: Sun, 11 Feb 2024 20:34:54 +0100 Subject: [PATCH] Disable mouse button limit in the window test --- tests/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/window.c b/tests/window.c index 8154a7af..21d2465b 100644 --- a/tests/window.c +++ b/tests/window.c @@ -77,7 +77,7 @@ int main(int argc, char** argv) glfwTerminate(); exit(EXIT_FAILURE); } - glfwSetInputMode(window, GLFW_DISABLE_MOUSE_BUTTON_LIMIT, GLFW_FALSE); + glfwSetInputMode(window, GLFW_DISABLE_MOUSE_BUTTON_LIMIT, GLFW_TRUE); glfwMakeContextCurrent(window); gladLoadGL(glfwGetProcAddress);