From fa56be799b78e6aad6b38b1eb8a27f8982ec9c46 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 11 Apr 2010 20:04:41 +1200 Subject: [PATCH] default sheetsize to 2048, not 512 --- OpenRA.Game/GameRules/UserSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/GameRules/UserSettings.cs b/OpenRA.Game/GameRules/UserSettings.cs index 114aefbeb3..c68ff8d6ab 100644 --- a/OpenRA.Game/GameRules/UserSettings.cs +++ b/OpenRA.Game/GameRules/UserSettings.cs @@ -35,7 +35,7 @@ namespace OpenRA.GameRules // Internal game settings public readonly int Timestep = 40; - public readonly int SheetSize = 512; + public readonly int SheetSize = 2048; // External game settings public readonly string NetworkHost = "";