Commit 409033cb authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

kernel32: Added proper support for GetSystemInfo on x86_64.

parent a18fdfc0
......@@ -153,6 +153,9 @@ VOID WINAPI GetSystemInfo(
default: si->dwProcessorType = 0;
}
break;
case PROCESSOR_ARCHITECTURE_AMD64:
si->dwProcessorType = PROCESSOR_AMD_X8664;
break;
default: FIXME("Unknown processor architecture %x\n", sci.Architecture);
}
si->dwAllocationGranularity = sbi.AllocationGranularity;
......
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