mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-24 02:32:18 +00:00
Show correct CPU string with Win64
This commit is contained in:
parent
c5bfbf5457
commit
2c6f2377bf
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue