summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-08-30 12:01:40 +0200
committerGitHub <noreply@github.com>2020-08-30 12:01:40 +0200
commitb31513a62ed8d03a77e396495533f34535de7624 (patch)
tree6dff9b85fea33d5a091a95eb7f10576fa18afde1
parentcdf845d3cad3c73a67c36e8f58c2b2e231059a17 (diff)
parent99740850a2ff16c56b2f19811a125f54d09acab5 (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.cs2
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,