summaryrefslogtreecommitdiff
path: root/src/common/cpu_detect.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-08-12 00:00:44 -0400
committerGravatar bunnei2015-08-15 18:03:25 -0400
commitbd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch)
treea20367004f684afeca83e795ce66e62115e8e79d /src/common/cpu_detect.cpp
parentJIT: Support negative address offsets. (diff)
downloadyuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.gz
yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.xz
yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.zip
x64: Refactor to remove fake interfaces and general cleanups.
Diffstat (limited to '')
-rw-r--r--src/common/cpu_detect.cpp (renamed from src/common/cpu_detect_x86.cpp)2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/cpu_detect_x86.cpp b/src/common/cpu_detect.cpp
index 0bcff726d..1d612829e 100644
--- a/src/common/cpu_detect_x86.cpp
+++ b/src/common/cpu_detect.cpp
@@ -62,7 +62,7 @@ CPUInfo::CPUInfo() {
62// Detects the various CPU features 62// Detects the various CPU features
63void CPUInfo::Detect() { 63void CPUInfo::Detect() {
64 memset(this, 0, sizeof(*this)); 64 memset(this, 0, sizeof(*this));
65#ifdef _M_X86_64 65#ifdef ARCHITECTURE_X64
66 Mode64bit = true; 66 Mode64bit = true;
67 OS64bit = true; 67 OS64bit = true;
68#endif 68#endif