mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2024-11-15 00:41:21 +00:00
Added CPUID support for AMD Renoir and Cezanne APUs.
This commit is contained in:
parent
77a2053b72
commit
4f3255e0fa
1 changed files with 8 additions and 0 deletions
|
@ -781,6 +781,10 @@ NoExtFunction:
|
|||
{
|
||||
switch (model)
|
||||
{
|
||||
case 0:
|
||||
if (extModel == 0x60) // Renoir
|
||||
Q_strncatz(cpuString, " Ryzen 7/5/3 4x00G", maxSize);
|
||||
break;
|
||||
case 1:
|
||||
if (extModel == 1) // Summit Ridge
|
||||
Q_strncatz(cpuString, " Ryzen 7/5/3 1x00", maxSize);
|
||||
|
@ -804,6 +808,10 @@ NoExtFunction:
|
|||
{
|
||||
switch (model)
|
||||
{
|
||||
case 0:
|
||||
if (extModel == 0x50) // Cezanne
|
||||
Q_strncatz(cpuString, " Ryzen 7/5/3 5x00G", maxSize);
|
||||
break;
|
||||
case 1:
|
||||
if (extModel == 0x21) // Vermeer (Zen3)
|
||||
Q_strncatz(cpuString, " Ryzen 9/7/5/3 5x00", maxSize);
|
||||
|
|
Loading…
Reference in a new issue