From a269f0683d3a839285aeac4e0d289afcf7ca84e0 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 3 Jan 2010 23:34:05 +1300 Subject: [PATCH] ugh --- OpenRa.Game/Graphics/Minimap.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/OpenRa.Game/Graphics/Minimap.cs b/OpenRa.Game/Graphics/Minimap.cs index a7c3251e55..4a6ffdaff8 100644 --- a/OpenRa.Game/Graphics/Minimap.cs +++ b/OpenRa.Game/Graphics/Minimap.cs @@ -24,12 +24,9 @@ namespace OpenRa.Game.Graphics for( var y = 0; y < 128; y++ ) for (var x = 0; x < 128; x++) { - // todo: use player color var b = Game.BuildingInfluence.GetBuildingAt(new int2(x, y)); if (b != null && b.Owner != null) bitmap.SetPixel(x, y, Chat.paletteColors[ (int)b.Owner.Palette ]); - //else - // bitmap.SetPixel(x, y, Color.Red); } sheet.Texture.SetData(bitmap);