From 01cc351be6bd18f71a1c3a7cf7e0ec0a3ce0eaa0 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 19 May 2020 23:28:56 +1000 Subject: [PATCH] Use correct libopenal so name for OpenBSD --- src/Audio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Audio.c b/src/Audio.c index e0e75fc13..1db590e95 100644 --- a/src/Audio.c +++ b/src/Audio.c @@ -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