kernel32: Added proper support for GetSystemInfo on x86_64.
This commit is contained in:
parent
a18fdfc07e
commit
409033cb6a
dlls/kernel32
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue