feat: updated engine version to 4.4-rc1
This commit is contained in:
parent
ee00efde1f
commit
21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "xml_parser.h"
|
||||
|
||||
#include "core/string/print_string.h"
|
||||
#include "core/io/file_access.h"
|
||||
|
||||
//#define DEBUG_XML
|
||||
|
||||
|
|
@ -429,7 +429,7 @@ String XMLParser::get_named_attribute_value(const String &p_name) const {
|
|||
}
|
||||
}
|
||||
|
||||
ERR_FAIL_COND_V_MSG(idx < 0, "", "Attribute not found: " + p_name + ".");
|
||||
ERR_FAIL_COND_V_MSG(idx < 0, "", vformat("Attribute not found: '%s'.", p_name));
|
||||
|
||||
return attributes[idx].value;
|
||||
}
|
||||
|
|
@ -493,7 +493,7 @@ Error XMLParser::open(const String &p_path) {
|
|||
Error err;
|
||||
Ref<FileAccess> file = FileAccess::open(p_path, FileAccess::READ, &err);
|
||||
|
||||
ERR_FAIL_COND_V_MSG(err != OK, err, "Cannot open file '" + p_path + "'.");
|
||||
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Cannot open file '%s'.", p_path));
|
||||
|
||||
length = file->get_length();
|
||||
ERR_FAIL_COND_V(length < 1, ERR_FILE_CORRUPT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue