Fixed a bug when detecting Intel CPU.
This commit is contained in:
parent
fcf9b82f14
commit
1acf5ace29
|
@ -1315,11 +1315,12 @@ int get_coretype(void){
|
|||
return CORE_NEHALEM;
|
||||
}
|
||||
break;
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
case 15:
|
||||
if (model <= 0x2) return CORE_NORTHWOOD;
|
||||
return CORE_PRESCOTT;
|
||||
else return CORE_PRESCOTT;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue