diff options
| author | Pringo <Pringo@users.noreply.github.com> | 2014-11-24 21:54:15 -0800 |
|---|---|---|
| committer | Pringo <Pringo@users.noreply.github.com> | 2014-11-24 21:54:15 -0800 |
| commit | 670d94967a64b6a3e99127caf5511b07825f21cb (patch) | |
| tree | e83e2909a2db5dbe8387a40f3839d27abf588c0c /Source/Core/Common/x64CPUDetect.cpp | |
| parent | 5a89ba20d75b17b1aeec090544934b95bdb0ec74 (diff) | |
| parent | 245ff601b7033f4122b48d837171c21baa9ac306 (diff) | |
Merge pull request #1 from dolphin-emu/master
update
Diffstat (limited to 'Source/Core/Common/x64CPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/x64CPUDetect.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/x64CPUDetect.cpp b/Source/Core/Common/x64CPUDetect.cpp index 4150a4159f..31409685e8 100644 --- a/Source/Core/Common/x64CPUDetect.cpp +++ b/Source/Core/Common/x64CPUDetect.cpp @@ -81,7 +81,7 @@ CPUInfo::CPUInfo() Detect(); } -// Detects the various cpu features +// Detects the various CPU features void CPUInfo::Detect() { memset(this, 0, sizeof(*this)); @@ -104,7 +104,7 @@ void CPUInfo::Detect() int cpu_id[4]; memset(brand_string, 0, sizeof(brand_string)); - // Detect CPU's CPUID capabilities, and grab cpu string + // Detect CPU's CPUID capabilities, and grab CPU string __cpuid(cpu_id, 0x00000000); u32 max_std_fn = cpu_id[0]; // EAX *((int *)brand_string) = cpu_id[1]; @@ -225,7 +225,7 @@ void CPUInfo::Detect() } } -// Turn the cpu info into a string we can show +// Turn the CPU info into a string we can show std::string CPUInfo::Summarize() { std::string sum(cpu_string); |
