mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-02 05:41:49 +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.
|
// The main window's title.
|
||||||
#ifdef _M_X64
|
#ifdef _M_X64
|
||||||
#define X64 " 64-bit"
|
#define X64 " 64-bit"
|
||||||
|
#elif _M_ARM64
|
||||||
|
#define X64 " ARM-64"
|
||||||
#else
|
#else
|
||||||
#define X64 ""
|
#define X64 ""
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
|
|
||||||
#ifdef _M_X64
|
#ifdef _M_X64
|
||||||
#define X64 " 64-bit"
|
#define X64 " 64-bit"
|
||||||
|
#elif _M_ARM64
|
||||||
|
#define X64 " ARM-64"
|
||||||
#else
|
#else
|
||||||
#define X64 ""
|
#define X64 ""
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue