Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesCJ60 committed Aug 14, 2024
1 parent d96c822 commit e893bc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Universal x86 Tuning Utility/Scripts/Family.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@ public static async void setCpuFamily()
// Zen5 - Zen6
if (CPUFamily == 26)
{
if (CPUModel == 32 || CPUModel == 36) FAM = RyzenFamily.StrixPoint;
if (CPUModel == 112) FAM = RyzenFamily.StrixHalo;
if (CPUModel == 68) FAM = RyzenFamily.GraniteRidge;
else FAM = RyzenFamily.StrixPoint2;
if (CPUModel == 32 || CPUModel == 36) FAM = RyzenFamily.StrixPoint;
if (CPUModel == 112) FAM = RyzenFamily.StrixHalo;
}

if (FAM == RyzenFamily.SummitRidge || FAM == RyzenFamily.PinnacleRidge || FAM == RyzenFamily.Matisse || FAM == RyzenFamily.Vermeer || FAM == RyzenFamily.Raphael || FAM == RyzenFamily.GraniteRidge) TYPE = ProcessorType.Amd_Desktop_Cpu;
Expand Down

0 comments on commit e893bc2

Please sign in to comment.