- indicate in the startup window title when GZDoom is compiled for ARM64 Windows

This commit is contained in:
Rachael Alexanderson 2023-01-17 02:35:42 -05:00
parent c382fd9f74
commit 20eb821acb
2 changed files with 4 additions and 0 deletions

View File

@ -85,6 +85,8 @@
// The main window's title.
#ifdef _M_X64
#define X64 " 64-bit"
#elif _M_ARM64
#define X64 " ARM-64"
#else
#define X64 ""
#endif

View File

@ -17,6 +17,8 @@
#ifdef _M_X64
#define X64 " 64-bit"
#elif _M_ARM64
#define X64 " ARM-64"
#else
#define X64 ""
#endif