diff --git a/app/AsusUSB.cs b/app/AsusUSB.cs index 75b9815a..25979ba0 100644 --- a/app/AsusUSB.cs +++ b/app/AsusUSB.cs @@ -644,6 +644,8 @@ namespace GHelper byte[] ASUS_INIT = Encoding.ASCII.GetBytes("^ASUS Tech.Inc."); SetXGM(ASUS_INIT); + + /* SetXGM(new byte[] { 0x5e, 0xd0, 0x02 }); SetXGM(new byte[] { 0x5e, 0xd0, 0x03 }); SetXGM(ASUS_INIT); @@ -652,6 +654,7 @@ namespace GHelper SetXGM(new byte[] { 0x5e, 0xce, 0x03 }); SetXGM(new byte[] { 0x5e, 0xd0, 0x04 }); SetXGM(new byte[] { 0x5e, 0xd0, 0x01 }); + */ } public static void ApplyXGMLight(bool status) diff --git a/app/Updates.cs b/app/Updates.cs index 41e044fd..780eceef 100644 --- a/app/Updates.cs +++ b/app/Updates.cs @@ -278,7 +278,7 @@ namespace GHelper foreach (var localVersion in localVersions) { newer = Math.Min(newer, new Version(driver.version).CompareTo(new Version(localVersion))); - Logger.WriteLine(driver.title + " " + driver.version + " vs " + localVersion + " = " + newer); + Logger.WriteLine(driver.title + " " + deviceID + " "+ driver.version + " vs " + localVersion + " = " + newer); } }