Fix for GA402XI

This commit is contained in:
Serge
2023-07-05 17:15:47 +02:00
parent 2d4e794084
commit bb5aeba9e7

View File

@@ -171,6 +171,11 @@ namespace GHelper.Mode
AppConfig.ContainsModel("G733"); AppConfig.ContainsModel("G733");
} }
private static bool IsFanRequired()
{
return AppConfig.ContainsModel("GA402XI") || AppConfig.ContainsModel("G513");
}
public void AutoPower(int delay = 0) public void AutoPower(int delay = 0)
{ {
@@ -182,8 +187,8 @@ namespace GHelper.Mode
if (applyPower) if (applyPower)
{ {
// force fan curve for misbehaving bios PPTs on G513 // force fan curve for misbehaving bios PPTs on some models
if (AppConfig.ContainsModel("G513") && !applyFans) if (!applyFans && IsFanRequired())
{ {
delay = 500; delay = 500;
AutoFans(true); AutoFans(true);