mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #76503 from RandomShaper/fix_args_print
Fix formatting function not used when printing run arguments
This commit is contained in:
commit
240ed28291
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ Error EditorRun::run(const String &p_scene, const String &p_write_movie) {
|
||||||
if (OS::get_singleton()->is_stdout_verbose()) {
|
if (OS::get_singleton()->is_stdout_verbose()) {
|
||||||
print_line(vformat("Running: %s", exec));
|
print_line(vformat("Running: %s", exec));
|
||||||
for (const String &E : args) {
|
for (const String &E : args) {
|
||||||
print_line(" %s", E);
|
print_line(vformat(" %s", E));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue