mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 00:09:11 +00:00
VideoConfig: Add "Borderless Fullscreen" option.
This option will disable exclusive fullscreen for users who prefer the old behaviour.
This commit is contained in:
parent
3400871992
commit
cd94ff1966
7 changed files with 21 additions and 1 deletions
|
@ -159,6 +159,10 @@ protected:
|
|||
_3d_vision->Enable(vconfig.backend_info.bSupports3DVision);
|
||||
_3d_vision->Show(vconfig.backend_info.bSupports3DVision);
|
||||
|
||||
// Borderless Fullscreen
|
||||
borderless_fullscreen->Enable(vconfig.backend_info.bSupportsExclusiveFullscreen);
|
||||
borderless_fullscreen->Show(vconfig.backend_info.bSupportsExclusiveFullscreen);
|
||||
|
||||
// EFB copy
|
||||
efbcopy_texture->Enable(vconfig.bEFBCopyEnable);
|
||||
efbcopy_ram->Enable(vconfig.bEFBCopyEnable);
|
||||
|
@ -189,6 +193,7 @@ protected:
|
|||
SettingChoice* choice_aamode;
|
||||
|
||||
SettingCheckBox* _3d_vision;
|
||||
SettingCheckBox* borderless_fullscreen;
|
||||
|
||||
SettingRadioButton* efbcopy_texture;
|
||||
SettingRadioButton* efbcopy_ram;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue