kernel32: Add stub case for ARM64 in GetSystemInfo.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46092
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2018-11-16 22:51:18 +01:00 committed by Alexandre Julliard
parent 000c708e3b
commit 014f9c0929

View file

@ -157,6 +157,9 @@ VOID WINAPI GetSystemInfo(
default: si->dwProcessorType = PROCESSOR_ARM920;
}
break;
case PROCESSOR_ARCHITECTURE_ARM64:
si->dwProcessorType = 0;
break;
default:
FIXME("Unknown processor architecture %x\n", sci.Architecture);
si->dwProcessorType = 0;