This commit is contained in:
Serge
2024-10-04 12:11:09 +02:00
parent 3c241cafba
commit 42ac2d627c
2 changed files with 6 additions and 1 deletions

View File

@@ -927,7 +927,7 @@ namespace GHelper
{
panelSlow.Visible = modeA;
if (RyzenControl.IsAMD())
if (RyzenControl.IsSupportedPower())
{
labelLeftTotal.Text = "SPL (CPU sustained)";
labelLeftSlow.Text = "sPPT (CPU 2 min boost)";

View File

@@ -143,6 +143,11 @@ namespace Ryzen
return CPUName.Contains("AMD") || CPUName.Contains("Ryzen") || CPUName.Contains("Athlon") || CPUName.Contains("Radeon") || CPUName.Contains("AMD Custom APU 0405");
}
public static bool IsSupportedPower()
{
return IsAMD() && FAMID < 12;
}
public static bool IsSupportedUV()
{
if (CPUName.Length == 0) Init();