瀏覽代碼

Display error messages in console when vformat is called

Andrii Doroshenko (Xrayez) 5 年之前
父節點
當前提交
113765b135
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/variant.cpp

+ 1 - 1
core/variant.cpp

@@ -3299,7 +3299,7 @@ String vformat(const String &p_text, const Variant &p1, const Variant &p2, const
 	bool error = false;
 	String fmt = p_text.sprintf(args, &error);
 
-	ERR_FAIL_COND_V(error, String());
+	ERR_FAIL_COND_V_MSG(error, String(), fmt);
 
 	return fmt;
 }