summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2022-07-29 21:56:02 +0200
committerRaul Santos <raulsntos@gmail.com>2022-07-29 21:56:02 +0200
commitca47471dfa632a2c6ca34c6cf074cf81d6fac6ea (patch)
tree924d50daeb8195f33e78461076dd4ad5f429c1cd /modules/mono/glue
parent5ca09b322c0dea3f71de3239c2da2a72d987f67d (diff)
downloadredot-engine-ca47471dfa632a2c6ca34c6cf074cf81d6fac6ea.tar.gz
Fix Callable calls in mono module
The `Callable::call` and `Callable::call_deferred` methods have been renamed to `Callable::callp` and `Callable::call_deferredp`.
Diffstat (limited to 'modules/mono/glue')
-rw-r--r--modules/mono/glue/callable_glue.cpp4
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() {