mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
Use the correct OpenAL lib name on Linux
This commit is contained in:
parent
52995f8fc2
commit
55294c5806
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ static void* hmodOpenAL;
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
#define OPENALLIB "OpenAL.framework/OpenAL"
|
#define OPENALLIB "OpenAL.framework/OpenAL"
|
||||||
#else
|
#else
|
||||||
#define OPENALLIB "libopenal.so"
|
#define OPENALLIB "libopenal.so.1"
|
||||||
#endif
|
#endif
|
||||||
#define LoadLibrary(x) dlopen((x), RTLD_LAZY)
|
#define LoadLibrary(x) dlopen((x), RTLD_LAZY)
|
||||||
#define GetProcAddress(a,b) dlsym((a),(b))
|
#define GetProcAddress(a,b) dlsym((a),(b))
|
||||||
|
|
Loading…
Reference in a new issue