Skip to content

Commit

Permalink
Merge pull request #76503 from RandomShaper/fix_args_print
Browse files Browse the repository at this point in the history
Fix formatting function not used when printing run arguments
  • Loading branch information
akien-mga committed Apr 27, 2023
2 parents 0fc3ba2 + cc92ba0 commit 240ed28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Error EditorRun::run(const String &p_scene, const String &p_write_movie) {
if (OS::get_singleton()->is_stdout_verbose()) {
print_line(vformat("Running: %s", exec));
for (const String &E : args) {
print_line(" %s", E);
print_line(vformat(" %s", E));
}
}

Expand Down

0 comments on commit 240ed28

Please sign in to comment.