mirror of https://github.com/encounter/SDL.git
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:
parent
36090f576f
commit
7bd640d5da
|
@ -377,7 +377,7 @@ WINRT_DetectWindowFlags(SDL_Window * window)
|
||||||
if (data->appView) {
|
if (data->appView) {
|
||||||
is_fullscreen = data->appView->IsFullScreen;
|
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;
|
is_fullscreen = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue