diff options
| author | Augustin Cavalier <waddlesplash@gmail.com> | 2014-10-20 14:01:50 -0400 |
|---|---|---|
| committer | Augustin Cavalier <waddlesplash@gmail.com> | 2014-10-24 16:09:21 -0400 |
| commit | 51700a2b6873b698e7d446c73a519bf5e9e863ee (patch) | |
| tree | 252506b9947d0d66e16f9bf24113a9d41c634965 /Source/Core/Common/CPUDetect.h | |
| parent | 8d4068527bf2e74aae36f33fabbbdfde29fcb8e9 (diff) | |
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").
Diffstat (limited to 'Source/Core/Common/CPUDetect.h')
| -rw-r--r-- | Source/Core/Common/CPUDetect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/CPUDetect.h b/Source/Core/Common/CPUDetect.h index 5d73be28ee..d66ace3c62 100644 --- a/Source/Core/Common/CPUDetect.h +++ b/Source/Core/Common/CPUDetect.h @@ -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; |
