mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:24:45 +00:00
kernel32: Set dwProcessorType on ARM.
This commit is contained in:
parent
3eb91fbc3c
commit
4f1aae76af
1 changed files with 7 additions and 0 deletions
|
@ -157,6 +157,13 @@ VOID WINAPI GetSystemInfo(
|
|||
case PROCESSOR_ARCHITECTURE_AMD64:
|
||||
si->dwProcessorType = PROCESSOR_AMD_X8664;
|
||||
break;
|
||||
case PROCESSOR_ARCHITECTURE_ARM:
|
||||
switch (sci.Level)
|
||||
{
|
||||
case 4: si->dwProcessorType = PROCESSOR_ARM_7TDMI; break;
|
||||
default: si->dwProcessorType = PROCESSOR_ARM920;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
FIXME("Unknown processor architecture %x\n", sci.Architecture);
|
||||
si->dwProcessorType = 0;
|
||||
|
|
Loading…
Reference in a new issue