Removed unsupported RGB modes for G614J https://github.com/seerge/g-helper/issues/1420

This commit is contained in:
Serge
2023-10-06 10:35:21 +02:00
parent 701a7d99c4
commit 460f921836
2 changed files with 6 additions and 1 deletions

View File

@@ -352,6 +352,11 @@ public static class AppConfig
return ContainsModel("Strix") || ContainsModel("Scar");
}
public static bool IsStrixLimitedRGB()
{
return ContainsModel("G614JV") || ContainsModel("G614JZ");
}
public static bool IsZ13()
{
return ContainsModel("Z13");

View File

@@ -211,7 +211,7 @@ namespace GHelper
return _modes;
}
if (AppConfig.IsStrix())
if (AppConfig.IsStrix() && !AppConfig.IsStrixLimitedRGB())
{
return _modesStrix;
}