From 38739ca8f61f50b154a91fbd9ccf55e2a3982305 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 6 Jun 2023 11:38:11 +0200 Subject: [PATCH] CPU power limits --- app/Settings.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Settings.cs b/app/Settings.cs index 57177851..85d7ecc6 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -1205,17 +1205,17 @@ namespace GHelper delay = 500; } - // Fix for models that don't support PPT settings in all modes - if (AppConfig.ContainsModel("GU603") || AppConfig.ContainsModel("GU604") || AppConfig.ContainsModel("FX517") || AppConfig.ContainsModel("G733")) + // Fix for models that don't support PPT settings in all modes, setting a "manual" mode for them + if (AppConfig.ContainsModel("GU604") || + AppConfig.ContainsModel("FX517") || + AppConfig.ContainsModel("G733")) { Program.acpi.DeviceSet(AsusACPI.PerformanceMode, AsusACPI.PerformanceManual, "CustomMode"); if (AppConfig.getConfigPerf("auto_apply") != 1) AutoFans(true); delay = 500; } - } - if (delay > 0) { var timer = new System.Timers.Timer(delay);