diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index ca8874df19..2b93fa1d51 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -100,7 +100,7 @@ Ref EditorExportPlatform::_load_icon_or_splash_image(const String &p_path Ref image; if (!p_path.is_empty() && ResourceLoader::exists(p_path) && !ResourceLoader::get_resource_type(p_path).is_empty()) { - Ref texture = ResourceLoader::load(p_path, "", ResourceFormatLoader::CACHE_MODE_REUSE, r_error); + Ref texture = ResourceLoader::load(p_path, "", ResourceFormatLoader::CACHE_MODE_IGNORE, r_error); if (texture.is_valid()) { image = texture->get_image(); if (image.is_valid() && image->is_compressed()) {