diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-11-05 17:59:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-05 17:59:28 +0100 |
commit | 3cf3c4137a4e6a5e25d7950ff727ec2157e40a37 (patch) | |
tree | 7d041f35dd1ab0ae102eb72547c69ff94cedf038 /modules | |
parent | d4028a3f501455278045e9ce53b87ac8b0600b7a (diff) | |
parent | 366c7e0f48056ec93b61880c9394c75919497890 (diff) |
Merge pull request #23524 from RySchmitt/fix_false_mono_error
Fix false error when exporting c# enum
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_field.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/mono_gd/gd_mono_field.cpp b/modules/mono/mono_gd/gd_mono_field.cpp index fe41722af0..5d9b9213e7 100644 --- a/modules/mono/mono_gd/gd_mono_field.cpp +++ b/modules/mono/mono_gd/gd_mono_field.cpp @@ -223,6 +223,8 @@ void GDMonoField::set_value_from_variant(MonoObject *p_object, const Variant &p_ ERR_FAIL(); } } + + break; } ERR_EXPLAIN(String() + "Attempted to set the value of a field of unmarshallable type: " + tclass->get_name()); |