Skip to content

Commit

Permalink
Issue #1734
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Dec 13, 2023
1 parent 6ca63bb commit b808aa7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/USB/Aura.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,13 @@ static Aura()
timer.Elapsed += Timer_Elapsed;
isSingleColor = AppConfig.IsSingleColor(); // Mono Color

if (AppConfig.ContainsModel("GA402X") || AppConfig.ContainsModel("GA402N") || AppConfig.ContainsModel("GA503R"))
if (AppConfig.ContainsModel("GA402X") || AppConfig.ContainsModel("GA402N"))
{
var device = AsusHid.FindDevices(AsusHid.AURA_ID).FirstOrDefault();
if (device is null) return;
Logger.WriteLine($"USB Version: {device.ReleaseNumberBcd} {device.ReleaseNumber}");

if (device.ReleaseNumberBcd >= 22 && device.ReleaseNumberBcd <= 25) isSingleColor = true;
if (AppConfig.ContainsModel("GA503R") && device.ReleaseNumberBcd == 3) isSingleColor = true;
}
}

Expand Down

0 comments on commit b808aa7

Please sign in to comment.