Empty Default actions for CC / Padles on Ally

This commit is contained in:
Serge
2023-08-04 21:59:02 +02:00
parent 98a0c21355
commit f242e74d07
4 changed files with 58 additions and 42 deletions

View File

@@ -262,7 +262,7 @@ public static class AppConfig
public static bool IsAlly()
{
return ContainsModel("RC71");
return true || ContainsModel("RC71");
}
public static bool NoMKeys()
@@ -305,7 +305,7 @@ public static class AppConfig
public static bool IsStrix()
{
return ContainsModel("Strix");
return ContainsModel("Strix") || ContainsModel("Scar");
}
public static bool IsZ13()
@@ -317,4 +317,9 @@ public static class AppConfig
{
return ContainsModel("X16") || ContainsModel("X13");
}
public static bool IsAdvantageEdition()
{
return ContainsModel("13QY");
}
}