Skip to content

Commit

Permalink
Fix up the arch check for the GS DLL filename
Browse files Browse the repository at this point in the history
  • Loading branch information
lemondrops committed Mar 16, 2024
1 parent d2cff08 commit a46fb2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/qt_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,11 +581,11 @@ c16stombs(char dst[], const uint16_t src[], int len)
#endif

#ifdef _WIN32
# if defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(_M_X64)
# if defined(__amd64__) || defined(_M_X64) || defined(__aarch64__) || defined(_M_ARM64)
# define LIB_NAME_GS "gsdll64.dll"
# else
# define LIB_NAME_GS "gsdll32.dll"
#endif
# endif
# define MOUSE_CAPTURE_KEYSEQ "F8+F12"
#else
# define LIB_NAME_GS "libgs"
Expand Down

0 comments on commit a46fb2e

Please sign in to comment.