Skip to content

Commit

Permalink
Keep _export_begin()'s path argument always consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
YeldhamDev committed Aug 27, 2023
1 parent 6da4ad1 commit cc859fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/export/project_export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit cc859fd

Please sign in to comment.