This commit is contained in:
Serge
2023-09-21 13:57:47 +02:00
parent 9c0cd15115
commit 4a43710d50
2 changed files with 15 additions and 1 deletions

View File

@@ -271,7 +271,7 @@ public static class AppConfig
public static bool NoMKeys()
{
return ContainsModel("Z13") ||
return (ContainsModel("Z13") && !IsARCNM()) ||
ContainsModel("FX706") ||
ContainsModel("FA506") ||
ContainsModel("FX506") ||
@@ -279,6 +279,11 @@ public static class AppConfig
ContainsModel("FX505");
}
public static bool IsARCNM()
{
return ContainsModel("GZ301VIC");
}
public static bool IsTUF()
{
return ContainsModel("TUF");