fix error in "Display Vsync set to" OSD message

This commit is contained in:
zeromus 2016-03-26 11:47:22 -05:00
parent 66abc95c58
commit c429ebdbcf
1 changed files with 1 additions and 1 deletions

View File

@ -2569,7 +2569,7 @@ namespace BizHawk.Client.EmuHawk
private static void VsyncMessage()
{
GlobalWin.OSD.AddMessage(
"Display Vsync set to " + (Global.Config.VSyncThrottle ? "on" : "off")
"Display Vsync set to " + (Global.Config.VSync ? "on" : "off")
);
}