From de44833457ea5bc5a98f6e42f0b994aba85032a7 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 27 Jun 2011 18:35:23 +1200 Subject: [PATCH] Don't mangle shadows/cursors --- OpenRA.Utility/Command.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index 0620a0dfc0..7864f28d2f 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -89,7 +89,7 @@ namespace OpenRA.Utility static Palette LoadPalette( string filename ) { using( var s = File.OpenRead( filename ) ) - return new Palette( s, true ); + return new Palette( s, false ); } public static void ConvertShpToPng(string[] args)