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:
Augustin Cavalier
2014-10-20 14:01:50 -04:00
parent 8d4068527b
commit 51700a2b68
2 changed files with 17 additions and 13 deletions

View File

@ -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;