diff options
| author | 2015-08-12 00:00:44 -0400 | |
|---|---|---|
| committer | 2015-08-15 18:03:25 -0400 | |
| commit | bd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch) | |
| tree | a20367004f684afeca83e795ce66e62115e8e79d /src/common/cpu_detect.cpp | |
| parent | JIT: Support negative address offsets. (diff) | |
| download | yuzu-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 |
| 63 | void CPUInfo::Detect() { | 63 | void 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 |