Commit a7b2f3d4 by Hugo Locurcio

Tweak the invalid preset error message to mention `export_presets.cfg`

parent 201d5a7f
......@@ -619,7 +619,9 @@ void EditorNode::_fs_changed() {
preset.unref();
}
if (preset.is_null()) {
export_error = vformat("Invalid export preset name: %s.", preset_name);
export_error = vformat(
"Invalid export preset name: %s. Make sure `export_presets.cfg` is present in the current directory.",
preset_name);
} else {
Ref<EditorExportPlatform> platform = preset->get_platform();
if (platform.is_null()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment