From 8e0bea59aa05c5495611693e83ce85526c92da7b Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:19:03 +0200 Subject: [PATCH] GPU setting tweak --- app/Gpu/GPUModeControl.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/Gpu/GPUModeControl.cs b/app/Gpu/GPUModeControl.cs index 5e47b83f..3a16801d 100644 --- a/app/Gpu/GPUModeControl.cs +++ b/app/Gpu/GPUModeControl.cs @@ -92,7 +92,12 @@ namespace GHelper.Gpu { if (AppConfig.NoAutoUltimate()) { - Program.acpi.SetGPUEco(0); + int standardStatus = Program.acpi.SetGPUEco(0); + if (standardStatus == 0) + { + settings.VisualiseGPUMode(); + return; + } Thread.Sleep(100); } status = Program.acpi.DeviceSet(AsusACPI.GPUMux, 0, "GPUMux");