mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2025-02-21 03:00:54 +00:00
Added default CPU name for ADM Zen/Zen+/Zen2 and Zen3 families.
This commit is contained in:
parent
9d3f36d09c
commit
093570ac4a
1 changed files with 6 additions and 0 deletions
|
@ -795,6 +795,9 @@ NoExtFunction:
|
|||
else if (extModel == 0x18) // Picasso
|
||||
Q_strncatz(cpuString, " Ryzen 5/3 3x00G", maxSize);
|
||||
break;
|
||||
default:
|
||||
Q_strncatz(cpuString, " Zen/Zen+/Zen2", maxSize);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (extFamily == 0x19) // Ryzen Zen3 Family
|
||||
|
@ -805,6 +808,9 @@ NoExtFunction:
|
|||
if (extModel == 0x21) // Vermeer (Zen3)
|
||||
Q_strncatz(cpuString, " Ryzen 9/7/5/3 5x00", maxSize);
|
||||
break;
|
||||
default:
|
||||
Q_strncatz(cpuString, " Zen3", maxSize);
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue