diff --git a/editor/export/editor_export.cpp b/editor/export/editor_export.cpp index 670fd0a06d94..3c9404fa8d12 100644 --- a/editor/export/editor_export.cpp +++ b/editor/export/editor_export.cpp @@ -210,6 +210,10 @@ void EditorExport::load_config() { } String platform = config->get_value(section, "platform"); + // Forward compatibility with Linux platform after 4.3. + if (platform == "Linux") { + platform = "Linux/X11"; + } Ref preset;