From 568a0e9b0247d78eab74f104e6a3ebcbce38f64b Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Mon, 14 Aug 2017 16:01:36 +0200 Subject: [PATCH] Fixed wrong connection check of the logitech g610 --- RGB.NET.Devices.Logitech/HID/DeviceChecker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RGB.NET.Devices.Logitech/HID/DeviceChecker.cs b/RGB.NET.Devices.Logitech/HID/DeviceChecker.cs index 9e3e307..8ff6f09 100644 --- a/RGB.NET.Devices.Logitech/HID/DeviceChecker.cs +++ b/RGB.NET.Devices.Logitech/HID/DeviceChecker.cs @@ -12,7 +12,7 @@ namespace RGB.NET.Devices.Logitech.HID private const int VENDOR_ID = 0x046D; private const int G910_ID = 0xC32B; private const int G810_ID = 0x0; - private const int G610_ID = 0x0; + private const int G610_ID = 0xC333; #endregion @@ -54,7 +54,7 @@ namespace RGB.NET.Devices.Logitech.HID else if (hidDevice.ProductID == G810_ID) IsG810Connected = true; else if (hidDevice.ProductID == G610_ID) - IsG810Connected = true; + IsG610Connected = true; } }