Workaround for bugged BIOS on G14 2024

This commit is contained in:
Serge
2024-03-05 00:08:46 +01:00
parent 251d32e115
commit 8ab1f1fc81
4 changed files with 42 additions and 25 deletions

View File

@@ -522,9 +522,14 @@ public static class AppConfig
}
}
public static bool IsResetRequired()
{
return ContainsModel("GA403");
}
public static bool IsFanRequired()
{
return ContainsModel("GA402X") || ContainsModel("G513") || ContainsModel("G713R") || ContainsModel("G713P");
return ContainsModel("GA402X") || ContainsModel("G513") || ContainsModel("G713R") || ContainsModel("G713P") || ContainsModel("GU605") || ContainsModel("GA403");
}
public static bool IsPowerRequired()