WinRT: bug-fix, fullscreen mode wasn't getting reported in Windows 8.0 apps

This bug did not occur in Windows 8.1 apps, just Windows 8.0.
This commit is contained in:
David Ludwig 2015-11-26 02:37:51 -05:00
parent 36090f576f
commit 7bd640d5da

View File

@ -377,7 +377,7 @@ WINRT_DetectWindowFlags(SDL_Window * window)
if (data->appView) {
is_fullscreen = data->appView->IsFullScreen;
}
#elif (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
#elif (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) || (NTDDI_VERSION == NTDDI_WIN8)
is_fullscreen = true;
#endif