diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-12-10 01:42:36 +0100 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-12-12 17:04:03 +0100 |
commit | 1ab4f26cc48f2713315f8be35e5e470134041f0a (patch) | |
tree | 0816b37a8c6a3b71f7e32b23af84fbd0c9da4ff0 /modules/mono | |
parent | bc5d67c61345758741fe087c6b5282402b0b2465 (diff) |
C#: Fix bindings generator for methods that return signals
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index 9f0bc3fbe3..7ef42247d1 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -3651,7 +3651,7 @@ void BindingsGenerator::_populate_builtin_type_interfaces() { itype.cs_type = itype.proxy_name; itype.cs_in_expr = "%0"; itype.c_in = "%5using %0 %1_in = " C_METHOD_MANAGED_TO_SIGNAL "(in %1);\n"; - itype.c_out = "%5return " C_METHOD_MANAGED_FROM_SIGNAL "(&%1);\n"; + itype.c_out = "%5return " C_METHOD_MANAGED_FROM_SIGNAL "(in %1);\n"; itype.c_arg_in = "&%s_in"; itype.c_type = "godot_signal"; itype.c_type_in = "in " + itype.cs_type; |