mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-04-28 21:27:58 +03:00
Default VSync on to match LUS default (#5261)
This commit is contained in:
parent
9355aca23e
commit
ae209709ea
1 changed files with 3 additions and 1 deletions
|
@ -334,7 +334,9 @@ void SohMenu::AddMenuSettings() {
|
|||
AddWidget(path, "Enable Vsync", WIDGET_CVAR_CHECKBOX)
|
||||
.CVar(CVAR_VSYNC_ENABLED)
|
||||
.PreFunc([](WidgetInfo& info) { info.isHidden = mSohMenu->disabledMap.at(DISABLE_FOR_NO_VSYNC).active; })
|
||||
.Options(CheckboxOptions().Tooltip("Removes tearing, but clamps your max FPS to your displays refresh rate."));
|
||||
.Options(CheckboxOptions()
|
||||
.Tooltip("Removes tearing, but clamps your max FPS to your displays refresh rate.")
|
||||
.DefaultValue(true));
|
||||
AddWidget(path, "Windowed Fullscreen", WIDGET_CVAR_CHECKBOX)
|
||||
.CVar(CVAR_SDL_WINDOWED_FULLSCREEN)
|
||||
.PreFunc([](WidgetInfo& info) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue