Merge pull request #64200 from Razoric480/raz/fix-ext-no-path

This commit is contained in:
Rémi Verschelde 2022-08-10 11:47:52 +02:00 committed by GitHub
commit 1efeab8eb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,7 +151,7 @@ Error ResourceInteractiveLoaderText::_parse_ext_resource(VariantParser::Stream *
path = ProjectSettings::get_singleton()->localize_path(res_path.get_base_dir().plus_file(path));
}
r_res = ResourceLoader::load(path, type, no_subresource_cache);
r_res = ResourceLoader::load(path, type, false);
if (r_res.is_null()) {
WARN_PRINT(String("Couldn't load external resource: " + path).utf8().get_data());