From 2c6f2377bfa041a6820ef27050dc18d361054ce8 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Sun, 26 Apr 2020 10:48:26 +0200 Subject: [PATCH] Show correct CPU string with Win64 --- neo/idlib/sys/sys_defines.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/neo/idlib/sys/sys_defines.h b/neo/idlib/sys/sys_defines.h index 18337811..ff2b761a 100644 --- a/neo/idlib/sys/sys_defines.h +++ b/neo/idlib/sys/sys_defines.h @@ -40,7 +40,11 @@ If you have questions concerning this license or the applicable additional terms // Win32 #if defined(WIN32) || defined(_WIN32) - #define CPUSTRING "x86" + #if defined(_WIN64) + #define CPUSTRING "x64" + #else + #define CPUSTRING "x86" + #endif #define BUILD_STRING "win-" CPUSTRING