Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove the core count from the cpu info OSD message. It was often wro…
…ng and not rather important.
  • Loading branch information
jordan-woyak committed Feb 17, 2013
1 parent 537d5ea commit 206fdde
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions Source/Core/Common/Src/CPUDetect.cpp
Expand Up @@ -205,14 +205,7 @@ void CPUInfo::Detect()
// Turn the cpu info into a string we can show
std::string CPUInfo::Summarize()
{
std::string sum;
if (num_cores == 1)
sum = StringFromFormat("%s, %i core", cpu_string, num_cores);
else
{
sum = StringFromFormat("%s, %i cores", cpu_string, num_cores);
if (HTT) sum += StringFromFormat(" (%i logical threads per physical core)", logical_cpu_count);
}
std::string sum(cpu_string);
if (bSSE) sum += ", SSE";
if (bSSE2) sum += ", SSE2";
if (bSSE3) sum += ", SSE3";
Expand Down

0 comments on commit 206fdde

Please sign in to comment.