From 35a36b4cdf1af7881412f433611bac4c5987f6cf Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 8 Dec 2019 22:02:05 +0000 Subject: [PATCH] Disable frame limiter by default VSync does a more reliable job of this. --- OpenRA.Game/Settings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index 35e7ca69bd..0dcdc32fb4 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -152,8 +152,8 @@ namespace OpenRA public bool CursorDouble = false; public WorldViewport ViewportDistance = WorldViewport.Medium; - [Desc("Add a frame rate limiter. It is recommended to not disable this.")] - public bool CapFramerate = true; + [Desc("Add a frame rate limiter.")] + public bool CapFramerate = false; [Desc("At which frames per second to cap the framerate.")] public int MaxFramerate = 60;