Fix Java 8 issues with LWJGL native libs on OSX?

This commit is contained in:
Petr Mrázek
2014-11-01 10:39:32 +01:00
parent 9e8a74cc89
commit 095640ed01
2 changed files with 61 additions and 4 deletions

View File

@ -334,7 +334,7 @@ public class OneSixLauncher implements Launcher
String cleanlib = extlib.replace("${arch}", is_64 ? "64" : "32");
File cleanlibf = new File(cleanlib);
Utils.log("Extracting " + cleanlibf.getName());
Utils.unzip(cleanlibf, new File(natives));
Utils.unzipNatives(cleanlibf, new File(natives));
} catch (IOException e)
{
System.err.println("Failed to extract native library:");