From 26441bf4133a73d92973d8925940d39de2b1128a Mon Sep 17 00:00:00 2001 From: Scr3amer Date: Fri, 31 Mar 2023 16:53:18 -0400 Subject: [PATCH] Revert default WINVER to 0x0501 in win32_platform.h Hard constraint, GLFW must build on Windows XP --- src/win32_platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32_platform.h b/src/win32_platform.h index a8a3840f..82b34bb9 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -49,9 +49,9 @@ #endif // GLFW requires Windows XP or later -#if WINVER < 0x0601 +#if WINVER < 0x0501 #undef WINVER - #define WINVER 0x0601 + #define WINVER 0x0501 #endif #if _WIN32_WINNT < 0x0501 #undef _WIN32_WINNT