* Ensure LwjglOffscreenBuffer extracts the required natives

* Fix Installer class in SDK to use NativeLibraryLoader.setCustomNativesFolder() instead of the Natives.setCustomDir()
This commit is contained in:
shadowislord 2014-06-07 12:53:55 -04:00
parent 6ec736c005
commit cc20781a02
2 changed files with 3 additions and 2 deletions

View File

@ -145,6 +145,7 @@ public class LwjglOffscreenBuffer extends LwjglContext implements Runnable {
}
public void run(){
loadNatives();
logger.log(Level.FINE, "Using LWJGL {0}", Sys.getVersion());
initInThread();
while (!needClose.get()){

View File

@ -109,8 +109,8 @@ public class Installer extends ModuleInstall {
logger.log(Level.INFO, "Create settings dir {0}", projectDir);
file.mkdirs();
}
com.jme3.system.Natives.setExtractionDir(jmpDir);
com.jme3.system.NativeLibraryLoader.setCustomExtractionFolder(jmpDir);
//avoid problems with lightweight popups
JPopupMenu.setDefaultLightWeightPopupEnabled(false);
}