diff options
author | kobewi <kobewi4e@gmail.com> | 2024-11-15 16:14:38 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-11-16 21:43:18 +0100 |
commit | 3b6705a641d9dfd2fcee24cbbdfa88efca79a840 (patch) | |
tree | 3386bb5b6feb5fcfa45f4507dee2e89cf1cb0f77 /main/main.cpp | |
parent | 5efd124ca10bf46df62fa2441d80589777e54a5a (diff) | |
download | redot-engine-3b6705a641d9dfd2fcee24cbbdfa88efca79a840.tar.gz |
Support uid:// in more places
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 2c41acef8b..2ac019ca53 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -3450,7 +3450,7 @@ void Main::setup_boot_logo() { if (show_logo) { //boot logo! const bool boot_logo_image = GLOBAL_DEF_BASIC("application/boot_splash/show_image", true); - const String boot_logo_path = String(GLOBAL_DEF_BASIC(PropertyInfo(Variant::STRING, "application/boot_splash/image", PROPERTY_HINT_FILE, "*.png"), String())).strip_edges(); + const String boot_logo_path = ResourceUID::ensure_path(GLOBAL_DEF_BASIC(PropertyInfo(Variant::STRING, "application/boot_splash/image", PROPERTY_HINT_FILE, "*.png"), String())).strip_edges(); const bool boot_logo_scale = GLOBAL_DEF_BASIC("application/boot_splash/fullsize", true); const bool boot_logo_filter = GLOBAL_DEF_BASIC("application/boot_splash/use_filter", true); |