From cc859fda33113004fd75049e79d855821b68d05e Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Sat, 26 Aug 2023 11:22:32 -0300 Subject: [PATCH] Keep `_export_begin()`'s `path` argument always consistent --- editor/export/project_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/export/project_export.cpp b/editor/export/project_export.cpp index b0d7534c83e..f723a203688 100644 --- a/editor/export/project_export.cpp +++ b/editor/export/project_export.cpp @@ -1070,7 +1070,7 @@ void ProjectExportDialog::_export_project_to_path(const String &p_path) { current->set_export_path(p_path); platform->clear_messages(); - Error err = platform->export_project(current, export_debug->is_pressed(), p_path, 0); + Error err = platform->export_project(current, export_debug->is_pressed(), current->get_export_path(), 0); result_dialog_log->clear(); if (err != ERR_SKIP) { if (platform->fill_log_messages(result_dialog_log, err)) {