Revert default WINVER to 0x0501 in win32_platform.h

Hard constraint, GLFW must build on Windows XP
This commit is contained in:
Scr3amer 2023-03-31 16:53:18 -04:00 committed by GitHub
parent 1917698c4d
commit 26441bf413
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 < 0x0601 #if WINVER < 0x0501
#undef WINVER #undef WINVER
#define WINVER 0x0601 #define WINVER 0x0501
#endif #endif
#if _WIN32_WINNT < 0x0501 #if _WIN32_WINNT < 0x0501
#undef _WIN32_WINNT #undef _WIN32_WINNT