Show correct CPU string with Win64

This commit is contained in:
Robert Beckebans 2020-04-26 10:48:26 +02:00
parent c5bfbf5457
commit 2c6f2377bf

View file

@ -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