mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 15:35:09 +00:00
AppletLoader fix, allow non lwjgl natives to be found in the cache directory. Again thx to NateS for finding and providing a fix.
This commit is contained in:
parent
0d075075bd
commit
5592301984
1 changed files with 5 additions and 0 deletions
|
|
@ -921,6 +921,11 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
|
|||
|
||||
return perms;
|
||||
}
|
||||
|
||||
// allow non lwjgl native to be found from cache directory
|
||||
protected String findLibrary (String libname) {
|
||||
return path + "natives" + File.separator + System.mapLibraryName(libname);
|
||||
}
|
||||
};
|
||||
|
||||
debug_sleep(2000);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue