kernelbase: Compare against the correct constants in GetNativeSystemInfo().

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51082
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-04-30 20:49:47 +02:00
parent 7cdb88a5d8
commit 1b7c292d62
1 changed files with 3 additions and 3 deletions

View File

@ -81,16 +81,16 @@ void WINAPI DECLSPEC_HOTPATCH GetNativeSystemInfo( SYSTEM_INFO *si )
if (!current_machine) return; if (!current_machine) return;
switch (native_machine) switch (native_machine)
{ {
case PROCESSOR_ARCHITECTURE_AMD64: case IMAGE_FILE_MACHINE_AMD64:
si->u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_AMD64; si->u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_AMD64;
si->dwProcessorType = PROCESSOR_AMD_X8664; si->dwProcessorType = PROCESSOR_AMD_X8664;
break; break;
case PROCESSOR_ARCHITECTURE_ARM64: case IMAGE_FILE_MACHINE_ARM64:
si->u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_ARM64; si->u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_ARM64;
si->dwProcessorType = 0; si->dwProcessorType = 0;
break; break;
default: default:
FIXME( "Add the proper information for %d in wow64 mode\n", si->u.s.wProcessorArchitecture ); FIXME( "Add the proper information for %x in wow64 mode\n", native_machine );
} }
} }