mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-29 19:15:38 +00:00
FullscreenUI: Disable exclusive fullscreen resolution for UWP
It's not supported.
This commit is contained in:
parent
3265acbe09
commit
21460c1924
|
@ -2080,6 +2080,7 @@ void DrawSettingsWindow()
|
|||
fullscreen_mode_set = true;
|
||||
}
|
||||
|
||||
#ifndef _UWP
|
||||
if (MenuButtonWithValue("Fullscreen Resolution", "Selects the resolution to use in fullscreen modes.",
|
||||
fullscreen_mode.empty() ? "Borderless Fullscreen" : fullscreen_mode.c_str()))
|
||||
{
|
||||
|
@ -2106,6 +2107,7 @@ void DrawSettingsWindow()
|
|||
};
|
||||
OpenChoiceDialog(ICON_FA_TV " Fullscreen Resolution", false, std::move(options), std::move(callback));
|
||||
}
|
||||
#endif
|
||||
|
||||
switch (s_settings_copy.gpu_renderer)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue