Disable frame limiter by default

VSync does a more reliable job of this.
This commit is contained in:
Paul Chote
2019-12-08 22:02:05 +00:00
committed by teinarss
parent 2231183fe0
commit 35a36b4cdf

View File

@@ -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;