1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Linux: Handle export preset forward compat with 4.3+ platform name

This commit is contained in:
Rémi Verschelde
2024-03-01 15:50:46 +01:00
parent 2fdeeead5b
commit d534c67d91

View File

@@ -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<EditorExportPreset> preset;