Fix support for 64-bit integers.
Change-Id: I4e2146a5fda41f280ee3f6f685a34f3cff28f05e
This commit is contained in:
@@ -80,6 +80,10 @@ public class Script extends BaseObj {
|
||||
mRS.nScriptSetVarI(mID, index, v);
|
||||
}
|
||||
|
||||
public void setVar(int index, long v) {
|
||||
mRS.nScriptSetVarJ(mID, index, v);
|
||||
}
|
||||
|
||||
public void setVar(int index, boolean v) {
|
||||
mRS.nScriptSetVarI(mID, index, v ? 1 : 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user