Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into version/4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
OBattler committed Mar 17, 2024
2 parents 03c520b + d2cff08 commit f06d2e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/qt/qt_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,11 @@ c16stombs(char dst[], const uint16_t src[], int len)
#endif

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

0 comments on commit f06d2e9

Please sign in to comment.