mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-02-24 16:46:42 +01:00
fix: linux findLibrary failed because invalid lib name was passed
This commit is contained in:
parent
3f54bac547
commit
40564b8cee
|
|
@ -92,7 +92,12 @@ public abstract class BaseAL {
|
|||
: "OpenAL32.dll";
|
||||
|
||||
// try to get path from JWS (if possible)
|
||||
String jwsPath = getPathFromJWS(libname);
|
||||
String jwsLibname =
|
||||
(System.getProperty("os.name").toLowerCase().indexOf("windows") == -1)
|
||||
? "openal.so"
|
||||
: "OpenAL32.dll";
|
||||
|
||||
String jwsPath = getPathFromJWS(jwsLibname);
|
||||
if (jwsPath != null) {
|
||||
libpath += seperator
|
||||
+ jwsPath.substring(0, jwsPath.lastIndexOf(File.separator));
|
||||
|
|
|
|||
Loading…
Reference in a new issue