From 84c467a485ab321433b3a93f43ed2b2552a3f553 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 1 Jan 2019 17:53:08 -0600 Subject: [PATCH] Cleanup. --- smx-config/Helpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smx-config/Helpers.cs b/smx-config/Helpers.cs index b8a7964..8454458 100644 --- a/smx-config/Helpers.cs +++ b/smx-config/Helpers.cs @@ -194,7 +194,7 @@ namespace smx_config return ColorFromFloatRGB(V, V, V); double C = V * S; - double X = C * (1 - Math.Abs((H % 2) - 1)); + double X = C * (1 - Math.Abs((H % 2) - 1)); Color ret; switch( (int) Math.Round(Math.Floor(H)) )