Commit 014f9c09 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Add stub case for ARM64 in GetSystemInfo.

parent 000c708e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment