feat: updated engine version to 4.4

This commit is contained in:
Sara 2025-03-17 10:43:25 +01:00
parent d08586768d
commit ba58baf432
140 changed files with 108317 additions and 14666 deletions

View file

@ -1028,8 +1028,8 @@ String EditorData::script_class_get_icon_path(const String &p_class, bool *r_val
return String();
}
HashMap<StringName, String>::ConstIterator E = _script_class_icon_paths.find(current);
if ((bool)E && !E->value.is_empty()) {
if (r_valid) {
if ((bool)E) {
if (r_valid && !E->value.is_empty()) {
*r_valid = true;
}
return E->value;