summaryrefslogtreecommitdiff
path: root/Source/Core/Common/CPUDetect.h
diff options
context:
space:
mode:
authorAugustin Cavalier <waddlesplash@gmail.com>2014-10-20 14:01:50 -0400
committerAugustin Cavalier <waddlesplash@gmail.com>2014-10-24 16:09:21 -0400
commit51700a2b6873b698e7d446c73a519bf5e9e863ee (patch)
tree252506b9947d0d66e16f9bf24113a9d41c634965 /Source/Core/Common/CPUDetect.h
parent8d4068527bf2e74aae36f33fabbbdfde29fcb8e9 (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.h4
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;