Use correct libopenal so name for OpenBSD

This commit is contained in:
UnknownShadow200 2020-05-19 23:28:56 +10:00
parent 89541ef72b
commit 01cc351be6

View File

@ -205,6 +205,8 @@ static cc_bool alInited;
static const String alLib = String_FromConst("openal32.dll");
#elif defined CC_BUILD_OSX
static const String alLib = String_FromConst("/System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL")
#elif defined CC_BUILD_OPENBSD
static const String alLib = String_FromConst("libopenal.so.3.0");
#else
static const String alLib = String_FromConst("libopenal.so.1");
#endif