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:
commit
0927a23d7b
@ -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() };
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user