mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +00:00
- indicate in the startup window title when GZDoom is compiled for ARM64 Windows
This commit is contained in:
parent
c382fd9f74
commit
20eb821acb
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
#ifdef _M_X64
|
||||
#define X64 " 64-bit"
|
||||
#elif _M_ARM64
|
||||
#define X64 " ARM-64"
|
||||
#else
|
||||
#define X64 ""
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue