From a58c1702ca9e6884803156a609f66dac43ab1fc1 Mon Sep 17 00:00:00 2001 From: melchior Date: Sat, 7 Dec 2019 19:00:39 -0500 Subject: [PATCH] W.I.P. #C - changed color channels [bug-workaround] --- Automap/Automap_Internals.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Automap/Automap_Internals.cs b/Automap/Automap_Internals.cs index 8e3daf4..71f8860 100644 --- a/Automap/Automap_Internals.cs +++ b/Automap/Automap_Internals.cs @@ -290,7 +290,7 @@ namespace Automap int col = ColorUtil.ColorOverlay(avgCol, rndCol, 0.125f); var packedFormat = ColorUtil.ColorMultiply3Clamped(col, b); - Color pixelColor = Color.FromArgb(ColorUtil.ColorR(packedFormat), ColorUtil.ColorG(packedFormat), ColorUtil.ColorB(packedFormat)); + Color pixelColor = Color.FromArgb(ColorUtil.ColorB(packedFormat), ColorUtil.ColorG(packedFormat), ColorUtil.ColorR(packedFormat)); //============ POI Population ================= if (BlockID_Designators.ContainsKey(blockId)) { -- 2.11.0