Browse Source

Fixed Windows gcc build

Sam Lantinga 7 years ago
parent
commit
1b16618b13
1 changed files with 3 additions and 4 deletions
  1. 3 4
      src/video/windows/SDL_windowsevents.c

+ 3 - 4
src/video/windows/SDL_windowsevents.c

@@ -1083,14 +1083,13 @@ struct SDL_WIN_OSVERSIONINFOW {
 static SDL_bool
 IsWin10FCUorNewer(void)
 {
-    typedef LONG(WINAPI* RtlGetVersionPtr)(struct SDL_WIN_OSVERSIONINFOW*);
-    struct SDL_WIN_OSVERSIONINFOW info;
-    SDL_zero(info);
-
     HMODULE handle = GetModuleHandleW(L"ntdll.dll");
     if (handle) {
+        typedef LONG(WINAPI* RtlGetVersionPtr)(struct SDL_WIN_OSVERSIONINFOW*);
         RtlGetVersionPtr getVersionPtr = (RtlGetVersionPtr)GetProcAddress(handle, "RtlGetVersion");
         if (getVersionPtr != NULL) {
+            struct SDL_WIN_OSVERSIONINFOW info;
+            SDL_zero(info);
             info.dwOSVersionInfoSize = sizeof(info);
             if (getVersionPtr(&info) == 0) { /* STATUS_SUCCESS == 0 */
                 if (   (info.dwMajorVersion == 10 && info.dwMinorVersion == 0 && info.dwBuildNumber >= 16299)