Remove static from method
Having the method static was causing javah to change the signature of the native method which caused compiling errors
This commit is contained in:
parent
7de6199bb5
commit
3ae3b0064e
@ -995,7 +995,7 @@ public class PhysicsSpace {
|
|||||||
return solverNumIterations;
|
return solverNumIterations;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static native void setSolverNumIterations(long physicsSpaceId, int numIterations);
|
private native void setSolverNumIterations(long physicsSpaceId, int numIterations);
|
||||||
|
|
||||||
public static native void initNativePhysics();
|
public static native void initNativePhysics();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user