mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Display error messages in console when vformat is called
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user