mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-12 20:55:56 +00:00
move display mode and hdr to graphics tab (#2485)
* move display mode and hdr to graphics tab * add left margin to display settings box * merge display combo box and fullscreen checkbox * remove commented out checkbox * Rename borderless to windowed * rename graphics box and mode * Rename window modes and map * fix formatting * fix: xml formatting * Rename borderless windowed * change resolution input layout * rename resolution to window size * change window size layout oriention * add true fullscreen mode * fix duplicate label name * set fullscreen on true fullscreen or borderless * remove commented out ref * rearrange settings config for new schema * move HDR config to GPU section
This commit is contained in:
parent
e1e697a3ff
commit
bc85357235
4 changed files with 178 additions and 174 deletions
|
@ -290,8 +290,8 @@ WindowSDL::WindowSDL(s32 width_, s32 height_, Input::GameController* controller_
|
|||
error = true;
|
||||
}
|
||||
if (!error) {
|
||||
SDL_SetWindowFullscreenMode(window,
|
||||
Config::getFullscreenMode() == "True" ? displayMode : NULL);
|
||||
SDL_SetWindowFullscreenMode(
|
||||
window, Config::getFullscreenMode() == "Fullscreen" ? displayMode : NULL);
|
||||
}
|
||||
SDL_SetWindowFullscreen(window, Config::getIsFullscreen());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue