mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Linux: Handle export preset forward compat with 4.3+ platform name
(cherry picked from commit d534c67d91
)
This commit is contained in:
parent
13b0956538
commit
7c502d449a
1 changed files with 4 additions and 0 deletions
|
@ -227,6 +227,10 @@ void EditorExport::load_config() {
|
||||||
}
|
}
|
||||||
|
|
||||||
String platform = config->get_value(section, "platform");
|
String platform = config->get_value(section, "platform");
|
||||||
|
// Forward compatibility with Linux platform after 4.3.
|
||||||
|
if (platform == "Linux") {
|
||||||
|
platform = "Linux/X11";
|
||||||
|
}
|
||||||
|
|
||||||
Ref<EditorExportPreset> preset;
|
Ref<EditorExportPreset> preset;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue