mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
FluisSynth dynamic library is now referenced by system specific name on macOS
This commit is contained in:
parent
bc0624e3b2
commit
4f7e1f0171
1 changed files with 4 additions and 0 deletions
|
@ -59,7 +59,11 @@
|
|||
#else
|
||||
#include <dlfcn.h>
|
||||
|
||||
#ifdef __APPLE__
|
||||
#define FLUIDSYNTHLIB "libfluidsynth.1.dylib"
|
||||
#else // !__APPLE__
|
||||
#define FLUIDSYNTHLIB "libfluidsynth.so.1"
|
||||
#endif // __APPLE__
|
||||
#endif
|
||||
|
||||
#define FLUID_REVERB_DEFAULT_ROOMSIZE 0.2f
|
||||
|
|
Loading…
Reference in a new issue