mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2024-11-15 00:41:21 +00:00
Add detection for Ryzen 3000 series CPUs.
This commit is contained in:
parent
8dd73fd86e
commit
04077d600c
1 changed files with 5 additions and 1 deletions
|
@ -675,12 +675,16 @@ NoExtFunction:
|
|||
case 1:
|
||||
if (extModel == 1) // Summit Ridge
|
||||
Q_strncatz(cpuString, " Ryzen 7/5/3 1x00", maxSize);
|
||||
else if (extModel == 11) // Raven Ridge
|
||||
else if (extModel == 0x11) // Raven Ridge
|
||||
Q_strncatz(cpuString, " Ryzen 5/3 2x00G", maxSize);
|
||||
else if (extModel == 0x71) // Matisse (Zen 2)
|
||||
Q_strncatz(cpuString, " Ryzen 9/7/5/3 3x00", maxSize);
|
||||
break;
|
||||
case 8:
|
||||
if (extModel == 8) // Pinnacle Ridge
|
||||
Q_strncatz(cpuString, " Ryzen 7/5/3 2x00", maxSize);
|
||||
else if (extModel == 0x18) // Picasso
|
||||
Q_strncatz(cpuString, " Ryzen 5/3 3x00G", maxSize);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue