From 1f4206116327de8209174b216d70c2bbf3f0ec10 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sat, 5 Feb 2011 20:28:23 +0000 Subject: [PATCH] fix silly string in CPUDetect git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7085 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/CPUDetect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/CPUDetect.cpp b/Source/Core/Common/Src/CPUDetect.cpp index 0f264fdde8..26d59ca2ad 100644 --- a/Source/Core/Common/Src/CPUDetect.cpp +++ b/Source/Core/Common/Src/CPUDetect.cpp @@ -207,7 +207,7 @@ std::string CPUInfo::Summarize() else { sum = StringFromFormat("%s, %i cores", cpu_string, num_cores); - if (HTT) sum += StringFromFormat(" (%i logical IDs per physical core)", logical_cpu_count); + if (HTT) sum += StringFromFormat(" (%i logical thread(s) per physical core)", logical_cpu_count); } if (bSSE) sum += ", SSE"; if (bSSE2) sum += ", SSE2";