From 1e8e54aaa2c35f2e496f24d666e8a013d3b5a601 Mon Sep 17 00:00:00 2001 From: Scr3amer Date: Thu, 30 Mar 2023 00:46:32 -0400 Subject: [PATCH] Make WINVER at least 0x0601 --- 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 82b34bb9..a8a3840f 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -49,9 +49,9 @@ #endif // GLFW requires Windows XP or later -#if WINVER < 0x0501 +#if WINVER < 0x0601 #undef WINVER - #define WINVER 0x0501 + #define WINVER 0x0601 #endif #if _WIN32_WINNT < 0x0501 #undef _WIN32_WINNT