Change 'sdl.fullresolution' default to 'desktop'
It works the same as 0x0, except it's documented in help string. Remove the misleading and old comments from the help string.
This commit is contained in:
parent
040e47372e
commit
6ffe13d81f
1 changed files with 3 additions and 6 deletions
|
@ -2178,12 +2178,9 @@ void Config_Add_SDL() {
|
|||
Pbool->Set_help("Sync to Vblank IF supported by the output device and renderer.\n"
|
||||
"It can reduce screen flickering, but it can also result in a slow DOSBox.");
|
||||
|
||||
Pstring = sdl_sec->Add_string("fullresolution", Property::Changeable::Always, "0x0");
|
||||
Pstring->Set_help("What resolution to use for fullscreen: original, desktop or a fixed size (e.g. 1024x768).\n"
|
||||
"Using your monitor's native resolution with aspect=true might give the best results.\n"
|
||||
"If you end up with small window on a large screen, try an output different from surface."
|
||||
"On Windows 10 with display scaling (Scale and layout) set to a value above 100%, it is recommended\n"
|
||||
"to use a lower full/windowresolution, in order to avoid window size problems.");
|
||||
Pstring = sdl_sec->Add_string("fullresolution", Property::Changeable::Always, "desktop");
|
||||
Pstring->Set_help("What resolution to use for fullscreen: 'original', 'desktop' or\n"
|
||||
"a fixed size (e.g. 1024x768).");
|
||||
|
||||
Pstring = sdl_sec->Add_string("windowresolution",Property::Changeable::Always,"original");
|
||||
Pstring->Set_help("Scale the window to this size IF the output device supports hardware scaling.\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue