Skip to content

Commit

Permalink
- indicate in the startup window title when GZDoom is compiled for AR…
Browse files Browse the repository at this point in the history
…M64 Windows
  • Loading branch information
madame-rachelle committed Jan 17, 2023
1 parent c382fd9 commit 20eb821
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/common/platform/win32/i_main.cpp
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/common/platform/win32/i_mainwindow.cpp
Expand Up @@ -17,6 +17,8 @@

#ifdef _M_X64
#define X64 " 64-bit"
#elif _M_ARM64
#define X64 " ARM-64"
#else
#define X64 ""
#endif
Expand Down

0 comments on commit 20eb821

Please sign in to comment.