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_generic.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_generic.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/common/cpu_detect_generic.cpp b/src/common/cpu_detect_generic.cpp deleted file mode 100644 index ccec324d9..000000000 --- a/src/common/cpu_detect_generic.cpp +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | // Copyright 2014 Dolphin Emulator Project | ||
| 2 | // Licensed under GPLv2+ | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "cpu_detect.h" | ||
| 6 | #include "hash.h" | ||
| 7 | |||
| 8 | namespace Common { | ||
| 9 | |||
| 10 | CPUInfo cpu_info; | ||
| 11 | |||
| 12 | CPUInfo::CPUInfo() { | ||
| 13 | } | ||
| 14 | |||
| 15 | std::string CPUInfo::Summarize() { | ||
| 16 | return "Generic"; | ||
| 17 | } | ||
| 18 | |||
| 19 | } // namespace Common | ||