You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 17:36:07 +00:00
[Core] Improve error messages with vformat
This commit is contained in:
@@ -450,7 +450,7 @@ PList::PList() {
|
||||
PList::PList(const String &p_string) {
|
||||
String err_str;
|
||||
bool ok = load_string(p_string, err_str);
|
||||
ERR_FAIL_COND_MSG(!ok, "PList: " + err_str);
|
||||
ERR_FAIL_COND_MSG(!ok, vformat("PList: %s.", err_str));
|
||||
}
|
||||
|
||||
uint64_t PList::read_bplist_var_size_int(Ref<FileAccess> p_file, uint8_t p_size) {
|
||||
|
||||
Reference in New Issue
Block a user