Browse Source

avoid -Wundef warning from SDL_config_windows.h

Ozkan Sezer 3 years ago
parent
commit
bfdea60572
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/SDL_config_windows.h

+ 1 - 1
include/SDL_config_windows.h

@@ -195,7 +195,7 @@ typedef unsigned int uintptr_t;
 #endif
 
 /* Check to see if we have Windows 10 build environment */
-#if _MSC_VER >= 1911        /* Visual Studio 15.3 */
+#if defined(_MSC_VER) && (_MSC_VER >= 1911)        /* Visual Studio 15.3 */
 #include <sdkddkver.h>
 #if _WIN32_WINNT >= 0x0601  /* Windows 7 */
 #define SDL_WINDOWS7_SDK