diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-05-20 18:34:35 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-06-03 17:09:24 +0200 |
commit | 14df9e5cb2e9f2de4adf9b979e8ef33de37b80bd (patch) | |
tree | 1f896d45a14d5a7c777d45b02ad7ca780cc30cd7 /modules/mono/mono_gd/gd_mono_marshal.cpp | |
parent | 22583ec6a39bb56943c78c0ed9a094b28b666b75 (diff) | |
download | redot-engine-14df9e5cb2e9f2de4adf9b979e8ef33de37b80bd.tar.gz |
Android build and export for the mono module
Diffstat (limited to 'modules/mono/mono_gd/gd_mono_marshal.cpp')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_marshal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono_marshal.cpp b/modules/mono/mono_gd/gd_mono_marshal.cpp index c462b8f71d..87157ed233 100644 --- a/modules/mono/mono_gd/gd_mono_marshal.cpp +++ b/modules/mono/mono_gd/gd_mono_marshal.cpp @@ -1019,7 +1019,7 @@ MonoArray *PoolStringArray_to_mono_array(const PoolStringArray &p_array) { for (int i = 0; i < p_array.size(); i++) { MonoString *boxed = mono_string_from_godot(r[i]); - mono_array_set(ret, MonoString *, i, boxed); + mono_array_setref(ret, i, boxed); } return ret; |