From c5ad427e024d0e016d4af7695ee5017811563206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=CC=84vels=20Nadtoc=CC=8Cajevs?= <7645683+bruvzg@users.noreply.github.com> Date: Tue, 19 May 2026 23:59:16 +0300 Subject: [PATCH] Do not use cache for icon/splash during export. --- editor/export/editor_export_platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) {