Fix macOS OpenAL library name

This commit is contained in:
Michael Pfaff 2022-11-21 13:54:28 -05:00
parent 1a95bee5f3
commit 92d2a63abc
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public final class AL {
break;
case LWJGLUtil.PLATFORM_MACOSX:
libname = "openal";
library_names = List.of("openal.dylib");
library_names = List.of("libopenal.dylib");
break;
default:
throw new LWJGLException("Unknown platform: " + LWJGLUtil.getPlatform());