Update native utils and fix load bugs

This commit is contained in:
Thad House
2023-07-24 20:40:47 -07:00
parent 3915aadeed
commit 9ca273c29a
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ public class VendorJNI {
static {
if (Helper.getExtractOnStaticLoad()) {
try {
loader = new RuntimeLoader<>("Vendor", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader = new RuntimeLoader<>("VendorDriver", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader.loadLibrary();
} catch (IOException ex) {
ex.printStackTrace();
@@ -42,7 +42,7 @@ public class VendorJNI {
if (libraryLoaded) {
return;
}
loader = new RuntimeLoader<>("VendorJNI", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader = new RuntimeLoader<>("VendorDriver", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader.loadLibrary();
libraryLoaded = true;
}