Skip to content

Commit

Permalink
jni: Fix ABI version check
Browse files Browse the repository at this point in the history
  • Loading branch information
LekKit committed Nov 5, 2024
1 parent 0183207 commit 61ac130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/jni/lekkit/rvvm/RVVMNative.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class RVVMNative {
public static boolean loaded = false;

private static void checkABI() {
if (check_abi(7)) {
if (check_abi(8)) {
loaded = true;
} else {
System.out.println("ERROR: Invalid librvvm ABI version! Please update your JNI bindings!");
Expand Down

0 comments on commit 61ac130

Please sign in to comment.