File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 35
35
#include " core/extension/gdextension.h"
36
36
#include " core/io/file_access_encrypted.h"
37
37
#include " core/io/file_access_pack.h" // PACK_HEADER_MAGIC, PACK_FORMAT_VERSION
38
+ #include " core/io/resource_uid.h"
38
39
#include " core/io/zip_io.h"
39
40
#include " core/version.h"
40
41
#include " editor/editor_file_system.h"
@@ -955,8 +956,8 @@ Vector<String> EditorExportPlatform::get_forced_export_files() {
955
956
956
957
files.push_back (ProjectSettings::get_singleton ()->get_global_class_list_path ());
957
958
958
- String icon = GLOBAL_GET (" application/config/icon" );
959
- String splash = GLOBAL_GET (" application/boot_splash/image" );
959
+ String icon = ResourceUID::ensure_path ( GLOBAL_GET (" application/config/icon" ) );
960
+ String splash = ResourceUID::ensure_path ( GLOBAL_GET (" application/boot_splash/image" ) );
960
961
if (!icon.is_empty () && FileAccess::exists (icon)) {
961
962
files.push_back (icon);
962
963
}
You can’t perform that action at this time.
0 commit comments