Merge pull request #26661 from neikeq/issue-17601

Mono: Fix array field being assigned MonoArray** instead of MonoArray*
This commit is contained in:
Ignacio Etcheverry 2019-03-05 23:03:25 +01:00 committed by GitHub
commit 6492de800f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ void GDMonoField::set_value_from_variant(MonoObject *p_object, const Variant &p_
#define SET_FROM_ARRAY(m_type) \
{ \
MonoArray *managed = GDMonoMarshal::m_type##_to_mono_array(p_value.operator ::m_type()); \
mono_field_set_value(p_object, mono_field, &managed); \
mono_field_set_value(p_object, mono_field, managed); \
}
switch (type.type_encoding) {