mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
Fix the brand/cpu_string reversal.
Before this commit, the two were reversed ("cpu_string" had the brand, e.g. "AuthenticAMD"; and "brand_string" had the CPU type, e.g. "AMD Phenom II X4 925").
This commit is contained in:
parent
8d4068527b
commit
51700a2b68
2 changed files with 17 additions and 13 deletions
|
@ -20,8 +20,8 @@ struct CPUInfo
|
|||
{
|
||||
CPUVendor vendor;
|
||||
|
||||
char cpu_string[0x21];
|
||||
char brand_string[0x41];
|
||||
char cpu_string[0x41];
|
||||
char brand_string[0x21];
|
||||
bool OS64bit;
|
||||
bool CPU64bit;
|
||||
bool Mode64bit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue