default sheetsize to 2048, not 512

This commit is contained in:
Chris Forbes
2010-04-11 20:04:41 +12:00
committed by Bob
parent cb15ab1a1f
commit fa56be799b

View File

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