From 596cabbe586190133b0d31ea7bd4961b8779a695 Mon Sep 17 00:00:00 2001 From: Marco Lizza Date: Thu, 29 Feb 2024 01:51:48 +0100 Subject: [PATCH] Tweaking `GLFW_ANY_POSITION` to `int32_t` max value to avoid signed/unsigned warnings. --- include/GLFW/glfw3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 9c55ac9d..52e3a5f9 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1179,7 +1179,7 @@ extern "C" { #define GLFW_WAYLAND_PREFER_LIBDECOR 0x00038001 #define GLFW_WAYLAND_DISABLE_LIBDECOR 0x00038002 -#define GLFW_ANY_POSITION 0x80000000 +#define GLFW_ANY_POSITION 0x7FFFFFFF /*! @defgroup shapes Standard cursor shapes * @brief Standard system cursor shapes.