mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
Fixed wrong connection check of the logitech g610
This commit is contained in:
parent
15598ab975
commit
568a0e9b02
@ -12,7 +12,7 @@ namespace RGB.NET.Devices.Logitech.HID
|
|||||||
private const int VENDOR_ID = 0x046D;
|
private const int VENDOR_ID = 0x046D;
|
||||||
private const int G910_ID = 0xC32B;
|
private const int G910_ID = 0xC32B;
|
||||||
private const int G810_ID = 0x0;
|
private const int G810_ID = 0x0;
|
||||||
private const int G610_ID = 0x0;
|
private const int G610_ID = 0xC333;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ namespace RGB.NET.Devices.Logitech.HID
|
|||||||
else if (hidDevice.ProductID == G810_ID)
|
else if (hidDevice.ProductID == G810_ID)
|
||||||
IsG810Connected = true;
|
IsG810Connected = true;
|
||||||
else if (hidDevice.ProductID == G610_ID)
|
else if (hidDevice.ProductID == G610_ID)
|
||||||
IsG810Connected = true;
|
IsG610Connected = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user