diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-07 23:28:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 23:28:34 +0200 |
commit | 6090f90743b53d9e80150528b7db940688be1be4 (patch) | |
tree | 08d3e50d7028061f03dca0e12fb81f1325329fec /modules/gdscript/gdscript_vm.cpp | |
parent | f0b26a616059d1fcde0c1a597ba77a65614261e1 (diff) | |
parent | fafa8c7f6e9dea6dfcfd827d9e2a8632bea7b335 (diff) |
Merge pull request #53545 from vnen/gdscript-release
Diffstat (limited to 'modules/gdscript/gdscript_vm.cpp')
-rw-r--r-- | modules/gdscript/gdscript_vm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_vm.cpp b/modules/gdscript/gdscript_vm.cpp index c89cf2f25c..1bc7ae086f 100644 --- a/modules/gdscript/gdscript_vm.cpp +++ b/modules/gdscript/gdscript_vm.cpp @@ -1719,6 +1719,7 @@ Variant GDScriptFunction::call(GDScriptInstance *p_instance, const Variant **p_a #define OPCODE_CALL_PTR(m_type) \ OPCODE(OPCODE_CALL_PTRCALL_##m_type) { \ CHECK_SPACE(3 + instr_arg_count); \ + ip += instr_arg_count; \ int argc = _code_ptr[ip + 1]; \ GET_INSTRUCTION_ARG(base, argc); \ MethodBind *method = _methods_ptr[_code_ptr[ip + 2]]; \ |