111
This commit is contained in:
@@ -36,13 +36,11 @@ class NativePointer {
|
||||
}
|
||||
|
||||
function add(intoffset) {
|
||||
this.C_Object = L_sq_I2P(L_sq_P2I(this.C_Object) + intoffset);
|
||||
return this;
|
||||
return NativePointer(L_sq_I2P(L_sq_P2I(this.C_Object) + intoffset));
|
||||
}
|
||||
|
||||
function sub(intoffset) {
|
||||
this.C_Object = L_sq_I2P(L_sq_P2I(this.C_Object) - intoffset);
|
||||
return this;
|
||||
return NativePointer(L_sq_I2P(L_sq_P2I(this.C_Object) - intoffset));
|
||||
}
|
||||
|
||||
function writeByteArray(arr) {
|
||||
|
||||
Reference in New Issue
Block a user