From 51700a2b6873b698e7d446c73a519bf5e9e863ee Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 20 Oct 2014 14:01:50 -0400 Subject: 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"). --- Source/Core/Common/CPUDetect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/Common/CPUDetect.h') 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; -- cgit v1.2.3