diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-31 13:29:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 13:29:31 +0200 |
commit | 556cc22dd0d52e9cbf66f6bf3f664a47e42fdd3c (patch) | |
tree | d464edcc258efd68c81683fcdd27902bc59e1b1b /modules/mono/glue | |
parent | 4aa355b0d1076731130e950a6ac97cd8ff1510ba (diff) | |
parent | ca47471dfa632a2c6ca34c6cf074cf81d6fac6ea (diff) |
Merge pull request #63656 from raulsntos/fix-signal-bind-csharp
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/callable_glue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/callable_glue.cpp b/modules/mono/glue/callable_glue.cpp index e59b34313c..521dc3dff7 100644 --- a/modules/mono/glue/callable_glue.cpp +++ b/modules/mono/glue/callable_glue.cpp @@ -49,7 +49,7 @@ MonoObject *godot_icall_Callable_Call(GDMonoMarshal::M_Callable *p_callable, Mon Variant result; Callable::CallError error; - callable.call(args.ptr(), argc, result, error); + callable.callp(args.ptr(), argc, result, error); return GDMonoMarshal::variant_to_mono_object(result); } @@ -68,7 +68,7 @@ void godot_icall_Callable_CallDeferred(GDMonoMarshal::M_Callable *p_callable, Mo args.set(i, &arg_store.get(i)); } - callable.call_deferred(args.ptr(), argc); + callable.call_deferredp(args.ptr(), argc); } void godot_register_callable_icalls() { |