1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Fix binary internal cache not being filled

This commit is contained in:
Francois Belair
2022-08-11 22:33:21 -04:00
parent 850c5ccccf
commit d331e5c7ac
2 changed files with 4 additions and 3 deletions

View File

@@ -403,7 +403,7 @@ Error ResourceInteractiveLoaderText::poll() {
path = remaps[path];
}
RES res = ResourceLoader::load(path, type, no_subresource_cache);
RES res = ResourceLoader::load(path, type, false);
if (res.is_null()) {
if (ResourceLoader::get_abort_on_missing_resources()) {