move MakeArray to FileFormats.Exts

This commit is contained in:
Chris Forbes
2011-12-27 14:52:11 +13:00
parent 523183431b
commit dd88a1269a
7 changed files with 14 additions and 14 deletions

View File

@@ -201,7 +201,7 @@ namespace OpenRA.Utility
var srcPalette = Palette.Load(args[1].Split(':')[1], false);
var destPalette = Palette.Load(args[2].Split(':')[1], false);
var fullIndexRange = OpenRA.Graphics.Util.MakeArray<int>(256, x => x);
var fullIndexRange = Exts.MakeArray<int>(256, x => x);
for( var i = 0; i < 256; i++ )
if (!remap.ContainsKey(i))