From 5d92c20c46f906f3033201946f642b1d32b8b0f2 Mon Sep 17 00:00:00 2001 From: Souryo Date: Thu, 19 May 2016 18:55:05 -0400 Subject: [PATCH] Video Config: Default to VSync off --- GUI.NET/Config/VideoInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI.NET/Config/VideoInfo.cs b/GUI.NET/Config/VideoInfo.cs index 50c319fa..c52f618e 100644 --- a/GUI.NET/Config/VideoInfo.cs +++ b/GUI.NET/Config/VideoInfo.cs @@ -20,7 +20,7 @@ namespace Mesen.GUI.Config public double VideoScale = 2; public VideoFilterType VideoFilter = VideoFilterType.None; public VideoAspectRatio AspectRatio = VideoAspectRatio.Auto; - public bool VerticalSync = true; + public bool VerticalSync = false; public bool UseHdPacks = false; public Int32[] Palette = new Int32[0];