From fac634b46015b2894ffaa6f4a9b6f1679449976a Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:30:47 +0100 Subject: [PATCH] Hide SPPT for unsupported models https://github.com/seerge/g-helper/issues/1753 --- app/Fans.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Fans.cs b/app/Fans.cs index 1f3aee3c..9d76ac27 100644 --- a/app/Fans.cs +++ b/app/Fans.cs @@ -790,6 +790,7 @@ namespace GHelper { bool modeA0 = (Program.acpi.DeviceGet(AsusACPI.PPT_TotalA0) >= 0 || RyzenControl.IsAMD()); + bool modeA3 = Program.acpi.DeviceGet(AsusACPI.PPT_APUA3) >= 0; bool modeB0 = Program.acpi.IsAllAmdPPT(); bool modeC1 = Program.acpi.DeviceGet(AsusACPI.PPT_APUC1) >= 0; @@ -815,6 +816,7 @@ namespace GHelper labelLeftA3.Text = "CPU Slow (sPPT)"; labelLeftC1.Text = "CPU Fast (fPPT)"; panelC1.Visible = modeC1; + panelA3.Visible = modeA3; } else {