Fix up the arch check for the GS DLL filename

This commit is contained in:
Alexander Babikov
2024-03-17 02:37:46 +05:00
parent d2cff08e24
commit a46fb2e76b

View File

@@ -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"