feat: modules moved and engine moved to submodule

This commit is contained in:
Jan van der Weide 2025-04-12 18:40:44 +02:00
parent dfb5e645cd
commit c33d2130cc
5136 changed files with 225275 additions and 64485 deletions

View file

@ -110,7 +110,7 @@ String sformat(const String &p_text, const String &p1, const String &p2,
search_from = result + 2;
}
new_string += p_text.substr(search_from, p_text.length() - search_from);
new_string += p_text.substr(search_from);
return new_string;
}
@ -159,7 +159,7 @@ Error read_all_file_utf8(const String &p_path, String &r_content) {
w[len] = 0;
String source;
if (source.parse_utf8((const char *)w, len) != OK) {
if (source.append_utf8((const char *)w, len) != OK) {
ERR_FAIL_V(ERR_INVALID_DATA);
}