Skip to content

Commit 7dbf108

Browse files
committed
Fix 1951594 (displayed vsync status was inverted if toggled).
Revenge of the last minute commits part ???.
1 parent 4c5628b commit 7dbf108

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/frontend.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -948,11 +948,11 @@ bool runVideoOptionsMenu(void)
948948
war_SetVsync(WzMainWindow::instance()->swapInterval() > 0);
949949
if (war_GetVsync())
950950
{
951-
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("Off"));
951+
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("On"));
952952
}
953953
else
954954
{
955-
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("On"));
955+
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("Off"));
956956
}
957957
break;
958958
}

0 commit comments

Comments
 (0)