diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-07-23 23:59:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 23:59:04 +0200 |
commit | 779c9d638e7046f285b301aa79f7cf50aa4c2f1c (patch) | |
tree | 9a1f806ac10da3b1d125a68739ab9f66fad81789 /modules/mono/csharp_script.cpp | |
parent | b66580927e8d4d0fb568d66d2193c1f2a6772c88 (diff) | |
parent | ee3c476c9a8a3be949252468570e75f35fea2697 (diff) | |
download | redot-engine-779c9d638e7046f285b301aa79f7cf50aa4c2f1c.tar.gz |
Merge pull request #15880 from neikeq/better-collections
Mono: Add Dictionary and Array classes
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 6efe9b283d..996e73a4bb 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1609,7 +1609,7 @@ void CSharpScript::load_script_signals(GDMonoClass *p_class, GDMonoClass *p_nati bool CSharpScript::_get_signal(GDMonoClass *p_class, GDMonoClass *p_delegate, Vector<Argument> ¶ms) { if (p_delegate->has_attribute(CACHED_CLASS(SignalAttribute))) { - MonoType *raw_type = GDMonoClass::get_raw_type(p_delegate); + MonoType *raw_type = p_delegate->get_mono_type(); if (mono_type_get_type(raw_type) == MONO_TYPE_CLASS) { // Arguments are accessibles as arguments of .Invoke method |