1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

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

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) {