Skip to content

Commit

Permalink
fix(scripting/lua): correct LuaNativeContext constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehbw committed Nov 28, 2023
1 parent 3e793d3 commit 3f9b239
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ struct LuaNativeContext : public fxNativeContext
{
LUA_INLINE LuaNativeContext(void*, int numArguments)
{
numArguments = numArguments;
this->numArguments = numArguments;
numResults = 0;
}

Expand Down

0 comments on commit 3f9b239

Please sign in to comment.