浏览代码

Fix formatting function not used when printing run arguments

Pedro J. Estébanez 2 年之前
父节点
当前提交
cc92ba0d44
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/editor_run.cpp

+ 1 - 1
editor/editor_run.cpp

@@ -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));
 		}
 	}