From 3a792383291525efe7da9f8e226ac88d10dec6b5 Mon Sep 17 00:00:00 2001 From: Matlo Date: Wed, 11 May 2016 19:24:01 +0200 Subject: [PATCH] Log shows wrong architecture with GIMX i386 on 64-bit Windows #383 --- core/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/log.c b/core/log.c index ae7ecbff..63387132 100644 --- a/core/log.c +++ b/core/log.c @@ -52,7 +52,7 @@ void print_os() { } printf("%s", version); SYSTEM_INFO info; - GetSystemInfo(&info); + GetNativeSystemInfo(&info); switch (info.wProcessorArchitecture) { case PROCESSOR_ARCHITECTURE_AMD64: printf(" x64");