From 39f919213f85dc9e4e0105b42bb2ce5c6efe403f Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 4 Aug 2024 11:02:59 +0200 Subject: [PATCH] ProArt GPU mode support https://github.com/seerge/g-helper/issues/2912 --- app/AsusACPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AsusACPI.cs b/app/AsusACPI.cs index ba827fca..8f99d0f5 100644 --- a/app/AsusACPI.cs +++ b/app/AsusACPI.cs @@ -171,7 +171,7 @@ public class AsusACPI private bool? _allAMD = null; private bool? _overdrive = null; - public static uint GPUEco => AppConfig.IsVivoZenbook() ? GPUEcoVivo : GPUEcoROG; + public static uint GPUEco => (AppConfig.IsVivoZenbook() || AppConfig.IsProArt()) ? GPUEcoVivo : GPUEcoROG; public static uint GPUMux => AppConfig.IsVivoZenbook() ? GPUMuxVivo : GPUMuxROG; [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]