From c224eeeaa3532d16ca6bf41d229d6dc98babcbdc Mon Sep 17 00:00:00 2001 From: Grzesiek11 Date: Wed, 3 Jan 2024 03:41:28 +0100 Subject: [PATCH] Disable GLFW_MOUSE_BUTTON_LIMIT in events test --- tests/events.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/events.c b/tests/events.c index fdc3c199..4fa19b96 100644 --- a/tests/events.c +++ b/tests/events.c @@ -549,6 +549,7 @@ int main(int argc, char** argv) int ch, i, width, height, count = 1; glfwSetErrorCallback(error_callback); + glfwInitHint(GLFW_MOUSE_BUTTON_LIMIT, GLFW_FALSE); if (!glfwInit()) exit(EXIT_FAILURE);