Fix to prevent config corruption

This commit is contained in:
Serge
2024-01-07 21:38:53 +01:00
parent 8a2eec7823
commit baf52720bb
2 changed files with 34 additions and 12 deletions

View File

@@ -556,7 +556,7 @@ public class AsusACPI
public bool IsNVidiaGPU()
{
return (!IsAllAmdPPT() && Program.acpi.DeviceGet(GPUEco) >= 0);
return (!IsAllAmdPPT() && Program.acpi.DeviceGet(GPUEco) >= 0 && !AppConfig.IsAlly());
}
public void SetAPUMem(int memory = 4)