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:
kappa1 2011-01-12 20:18:38 +00:00
parent 0d075075bd
commit 5592301984
1 changed files with 5 additions and 0 deletions

View File

@ -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);