diff options
| author | comex <comexk@gmail.com> | 2014-09-22 21:02:21 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2014-09-25 18:48:00 -0400 |
| commit | fb3d9c9d58a00e6ab4e062aa45200764ac8f205a (patch) | |
| tree | 20df2802dd3f68282935ff2e6b54c67564ab969d /Source/Core/Common/GenericCPUDetect.cpp | |
| parent | 9cdd842080377f3ee62a65f45183ccb270bcfa28 (diff) | |
Fix warning in x64CPUDetect.cpp in generic build by not building it.
Diffstat (limited to 'Source/Core/Common/GenericCPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/GenericCPUDetect.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/Core/Common/GenericCPUDetect.cpp b/Source/Core/Common/GenericCPUDetect.cpp new file mode 100644 index 0000000000..5f135bb7a2 --- /dev/null +++ b/Source/Core/Common/GenericCPUDetect.cpp @@ -0,0 +1,14 @@ +// Copyright 2013 Dolphin Emulator Project +// Licensed under GPLv2 +// Refer to the license.txt file included. + +#include "Common/CPUDetect.h" + +CPUInfo cpu_info; + +CPUInfo::CPUInfo() {} + +std::string CPUInfo::Summarize() +{ + return "Generic"; +} |
