1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Fixed wrong connection check of the logitech g610

This commit is contained in:
Darth Affe 2017-08-14 16:01:36 +02:00
parent 15598ab975
commit 568a0e9b02

View File

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