diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-08-30 12:01:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 12:01:40 +0200 |
commit | b31513a62ed8d03a77e396495533f34535de7624 (patch) | |
tree | 6dff9b85fea33d5a091a95eb7f10576fa18afde1 | |
parent | cdf845d3cad3c73a67c36e8f58c2b2e231059a17 (diff) | |
parent | 99740850a2ff16c56b2f19811a125f54d09acab5 (diff) |
Merge pull request #41610 from neikeq/invalid-cast-export-csharp-i18n
C#: Fix InvalidCastException on export
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs index e819848212..599ca94699 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs @@ -19,7 +19,7 @@ namespace GodotTools.Export public class ExportPlugin : EditorExportPlugin { [Flags] - enum I18NCodesets + enum I18NCodesets : long { None = 0, CJK = 1, |