From 63b357a71bfd51e4ffaa63f0c453fde02ecfb603 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Fri, 1 Mar 2024 12:38:48 +0100 Subject: [PATCH] GPU Power slider limits --- app/AsusACPI.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/AsusACPI.cs b/app/AsusACPI.cs index 48118eb2..f90d86ee 100644 --- a/app/AsusACPI.cs +++ b/app/AsusACPI.cs @@ -294,6 +294,11 @@ public class AsusACPI MaxGPUPower = 70; } + if (AppConfig.IsSlash()) + { + MaxGPUPower = 25; + } + if (AppConfig.DynamicBoost5()) { MaxGPUBoost = 5;