Fixed invalid name for state parameter
This is the same name the macro uses to return it...
This commit is contained in:
parent
30cc12912b
commit
b2c57b6656
1 changed files with 2 additions and 2 deletions
|
|
@ -95,9 +95,9 @@ static FState* NativeStateOffset(FState* state, int offset)
|
|||
DEFINE_ACTION_FUNCTION_NATIVE(DObject, BuiltinStateOffset, NativeStateOffset)
|
||||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_POINTER(state, FState);
|
||||
PARAM_POINTER(st, FState);
|
||||
PARAM_INT(offset);
|
||||
ACTION_RETURN_STATE(NativeStateOffset(state, offset));
|
||||
ACTION_RETURN_STATE(NativeStateOffset(st, offset));
|
||||
}
|
||||
|
||||
ExpEmit FxFStateOffset::Emit(VMFunctionBuilder* build)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue