1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

Merge pull request #75 from DarthAffe/SDK/SteelSeries

Fixed wrong color-conversion for SteelSeries devices
This commit is contained in:
DarthAffe 2019-06-16 17:02:11 +02:00 committed by GitHub
commit 0927a23d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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() };
}
}