Linux: Handle export preset forward compat with 4.3+ platform name
This commit is contained in:
parent
2fdeeead5b
commit
d534c67d91
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue