git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@223 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2008-08-15 20:51:32 +00:00
parent a077e1e1de
commit 48cfb8aa1f
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ void CPUInfo::Detect()
if ((cpu_id[2] >> 19) & 1) bSSE4_1 = true;
if ((cpu_id[2] >> 20) & 1) bSSE4_2 = true;
}
if (max_std_fn >= 4) {
if (max_ex_fn >= 0x80000004) {
// Extract brand string
__cpuid(cpu_id, 0x80000002);
memcpy(brand_string, cpu_id, sizeof(cpu_id));