mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Hide unsupported power limtis https://github.com/seerge/g-helper/discussions/3215
This commit is contained in:
@@ -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)";
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user