summaryrefslogtreecommitdiffstats
path: root/main/main.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-11-15 16:14:38 +0100
committerkobewi <kobewi4e@gmail.com>2024-11-16 21:43:18 +0100
commit3b6705a641d9dfd2fcee24cbbdfa88efca79a840 (patch)
tree3386bb5b6feb5fcfa45f4507dee2e89cf1cb0f77 /main/main.cpp
parent5efd124ca10bf46df62fa2441d80589777e54a5a (diff)
downloadredot-engine-3b6705a641d9dfd2fcee24cbbdfa88efca79a840.tar.gz
Support uid:// in more places
Diffstat (limited to 'main/main.cpp')
-rw-r--r--main/main.cpp2
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);