Skip to content

Commit

Permalink
Fix 1951594 (displayed vsync status was inverted if toggled).
Browse files Browse the repository at this point in the history
Revenge of the last minute commits part ???.
  • Loading branch information
Safety0ff committed Jul 18, 2011
1 parent 4c5628b commit 7dbf108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend.cpp
Expand Up @@ -948,11 +948,11 @@ bool runVideoOptionsMenu(void)
war_SetVsync(WzMainWindow::instance()->swapInterval() > 0);
if (war_GetVsync())
{
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("Off"));
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("On"));
}
else
{
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("On"));
widgSetString(psWScreen, FRONTEND_VSYNC_R, _("Off"));
}
break;
}
Expand Down

0 comments on commit 7dbf108

Please sign in to comment.