kernel32: Set dwProcessorType on ARM.
This commit is contained in:
parent
3eb91fbc3c
commit
4f1aae76af
|
@ -157,6 +157,13 @@ VOID WINAPI GetSystemInfo(
|
||||||
case PROCESSOR_ARCHITECTURE_AMD64:
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
||||||
si->dwProcessorType = PROCESSOR_AMD_X8664;
|
si->dwProcessorType = PROCESSOR_AMD_X8664;
|
||||||
break;
|
break;
|
||||||
|
case PROCESSOR_ARCHITECTURE_ARM:
|
||||||
|
switch (sci.Level)
|
||||||
|
{
|
||||||
|
case 4: si->dwProcessorType = PROCESSOR_ARM_7TDMI; break;
|
||||||
|
default: si->dwProcessorType = PROCESSOR_ARM920;
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
FIXME("Unknown processor architecture %x\n", sci.Architecture);
|
FIXME("Unknown processor architecture %x\n", sci.Architecture);
|
||||||
si->dwProcessorType = 0;
|
si->dwProcessorType = 0;
|
||||||
|
|
Loading…
Reference in New Issue