From 5401ea952ace2b8971494f7b284a5fd86ea07936 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:51:59 +0100 Subject: [PATCH] Improved GPU Power reading --- app/Fans.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Fans.cs b/app/Fans.cs index 444deae9..34710d3c 100644 --- a/app/Fans.cs +++ b/app/Fans.cs @@ -526,7 +526,7 @@ namespace GHelper private void InitGPUPower() { gpuPowerBase = Program.acpi.DeviceGet(AsusACPI.GPU_BASE); - panelGPUPower.Visible = gpuPowerBase >= 0; + panelGPUPower.Visible = gpuPowerBase > 0; if (gpuPowerBase <= 0) return; Task.Run(async () =>