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 a265f94d09
commit e8eb6297e0
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();
}