diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-08-03 21:17:28 -0700 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-08-03 21:17:28 -0700 |
| commit | 4c42b38de1b91c9494e0a044cbf305941a09ec9f (patch) | |
| tree | 666a1a45c63684e04eeccc9d5e5dbc1b074b0795 /Source/Core/Common/x64CPUDetect.cpp | |
| parent | e15ec56bf0237dba3db5cf969d68566af3a79194 (diff) | |
| parent | 0c24e1dcf21db56c31a069484514e5e9ff760c93 (diff) | |
Merge pull request #428 from Sonicadvance1/x86_32-removal
Remove x86_32 support from Dolphin.
Diffstat (limited to 'Source/Core/Common/x64CPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/x64CPUDetect.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Source/Core/Common/x64CPUDetect.cpp b/Source/Core/Common/x64CPUDetect.cpp index 3bdac9b30b..a17a8492cb 100644 --- a/Source/Core/Common/x64CPUDetect.cpp +++ b/Source/Core/Common/x64CPUDetect.cpp @@ -90,22 +90,12 @@ CPUInfo::CPUInfo() { void CPUInfo::Detect() { memset(this, 0, sizeof(*this)); -#if _M_X86_32 - Mode64bit = false; -#elif _M_X86_64 +#ifdef _M_X86_64 Mode64bit = true; OS64bit = true; #endif num_cores = 1; -#ifdef _WIN32 -#if _M_X86_32 - BOOL f64 = false; - IsWow64Process(GetCurrentProcess(), &f64); - OS64bit = (f64 == TRUE) ? true : false; -#endif -#endif - // Set obvious defaults, for extra safety if (Mode64bit) { bSSE = true; |
