From 0acec989bffdd0b7a213c1a175bfa67adef69564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 10 Nov 2013 10:05:23 +0100 Subject: [PATCH] cap the frame rate by default --- OpenRA.Game/GameRules/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/GameRules/Settings.cs b/OpenRA.Game/GameRules/Settings.cs index 2539baddd5..a03fb2de36 100644 --- a/OpenRA.Game/GameRules/Settings.cs +++ b/OpenRA.Game/GameRules/Settings.cs @@ -91,7 +91,7 @@ namespace OpenRA.GameRules public int2 FullscreenSize = new int2(0,0); public int2 WindowedSize = new int2(1024, 768); public bool PixelDouble = false; - public bool CapFramerate = false; + public bool CapFramerate = true; public int MaxFramerate = 60; public int BatchSize = 8192;