Fix library loading on Windows when not using a JAR

This commit is contained in:
Cameron Gutman
2013-12-28 20:05:38 -05:00
parent 668402c336
commit 331c6c9332
2 changed files with 14 additions and 9 deletions

View File

@@ -100,11 +100,7 @@ public class Limelight implements NvConnectionListener {
}
}
try {
LibraryHelper.prepareNativeLibraries();
} catch (IOException e) {
// This is expected to fail when not in a JAR
}
LibraryHelper.prepareNativeLibraries();
createFrame();
}