mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
Fixed wrong color encoding for asus-devices
This commit is contained in:
parent
17beace550
commit
dbdf95e06f
@ -76,8 +76,8 @@ namespace RGB.NET.Devices.Asus
|
||||
{
|
||||
int index = ((int)led.CustomData) * 3;
|
||||
ColorData[index] = led.Color.R;
|
||||
ColorData[index + 1] = led.Color.G;
|
||||
ColorData[index + 2] = led.Color.B;
|
||||
ColorData[index + 1] = led.Color.B;
|
||||
ColorData[index + 2] = led.Color.G;
|
||||
}
|
||||
|
||||
ApplyColorData();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user