Make WINVER at least 0x0601

This commit is contained in:
Scr3amer 2023-03-30 00:46:32 -04:00 committed by GitHub
parent 08db50b6bb
commit 1e8e54aaa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,9 +49,9 @@
#endif #endif
// GLFW requires Windows XP or later // GLFW requires Windows XP or later
#if WINVER < 0x0501 #if WINVER < 0x0601
#undef WINVER #undef WINVER
#define WINVER 0x0501 #define WINVER 0x0601
#endif #endif
#if _WIN32_WINNT < 0x0501 #if _WIN32_WINNT < 0x0501
#undef _WIN32_WINNT #undef _WIN32_WINNT