From 8bb20901467fcb234db3e7747bccd3c94817d950 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 16 Jun 2019 17:01:11 +0200 Subject: [PATCH] Fixed wrong color-conversion for SteelSeries devices --- RGB.NET.Devices.SteelSeries/Helper/ColorExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RGB.NET.Devices.SteelSeries/Helper/ColorExtensions.cs b/RGB.NET.Devices.SteelSeries/Helper/ColorExtensions.cs index 793dc02..c4f4bc4 100644 --- a/RGB.NET.Devices.SteelSeries/Helper/ColorExtensions.cs +++ b/RGB.NET.Devices.SteelSeries/Helper/ColorExtensions.cs @@ -4,6 +4,6 @@ namespace RGB.NET.Devices.SteelSeries.Helper { internal static class ColorExtensions { - internal static int[] ToIntArray(this Color color) => new int[] { color.GetR(), color.GetB(), color.GetG() }; + internal static int[] ToIntArray(this Color color) => new int[] { color.GetR(), color.GetG(), color.GetB() }; } }