We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9369a34 commit b74ba62Copy full SHA for b74ba62
src/core/windows/SDL_windows.c
@@ -311,6 +311,11 @@ static BOOL IsWindowsBuildVersionAtLeast(DWORD dwBuildNumber)
311
WIN_BuildNumber = (os_info.dwBuildNumber & ~0xF0000000);
312
return (WIN_BuildNumber >= dwBuildNumber);
313
}
314
+#else
315
+static BOOL IsWindowsBuildVersionAtLeast(DWORD dwBuildNumber)
316
+{
317
+ return TRUE;
318
+}
319
#endif
320
321
// apply some static variables so we only call into the Win32 API once per process for each check.
0 commit comments