Skip to content

Commit

Permalink
Merge pull request #910 from PotatoOfDoom/master
Browse files Browse the repository at this point in the history
Fix "Disable VSync" settings description
  • Loading branch information
WSSDude authored Apr 4, 2024
2 parents ea9a146 + 4ba1da2 commit e73ac16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/overlay/widgets/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ void Settings::OnUpdate()
UpdateAndDrawSetting(
"Disable Boundary Teleport", "Allows players to access out-of-bounds locations (requires restart to take effect).", m_patches.DisableBoundaryTeleport,
patchesSettings.DisableBoundaryTeleport);
UpdateAndDrawSetting("Disable V-Sync (Windows 7 only)", " (requires restart to take effect).", m_patches.DisableWin7Vsync, patchesSettings.DisableWin7Vsync);
UpdateAndDrawSetting("Disable V-Sync (Windows 7 only)", "Disables VSync on Windows 7 to bypass the 60 FPS limit (requires restart to take effect).", m_patches.DisableWin7Vsync, patchesSettings.DisableWin7Vsync);
UpdateAndDrawSetting(
"Fix Minimap Flicker", "Disables VSync on Windows 7 to bypass the 60 FPS limit (requires restart to take effect).", m_patches.MinimapFlicker,
"Fix Minimap Flicker", "Fixes Minimap flicker caused by some mods (requires restart to take effect).", m_patches.MinimapFlicker,
patchesSettings.MinimapFlicker);

ImGui::EndTable();
Expand Down

0 comments on commit e73ac16

Please sign in to comment.