Fix `strip_edges()` call that was removed in boot splash image change
This commit is contained in:
parent
7b0458c18f
commit
15e8c4052e
|
@ -1701,7 +1701,7 @@ Error Main::setup2(Thread::ID p_main_tid_override) {
|
|||
|
||||
if (show_logo) { //boot logo!
|
||||
const bool boot_logo_image = GLOBAL_DEF("application/boot_splash/show_image", true);
|
||||
const String boot_logo_path = GLOBAL_DEF("application/boot_splash/image", String());
|
||||
const String boot_logo_path = String(GLOBAL_DEF("application/boot_splash/image", String())).strip_edges();
|
||||
const bool boot_logo_scale = GLOBAL_DEF("application/boot_splash/fullsize", true);
|
||||
const bool boot_logo_filter = GLOBAL_DEF("application/boot_splash/use_filter", true);
|
||||
ProjectSettings::get_singleton()->set_custom_property_info("application/boot_splash/image",
|
||||
|
|
Loading…
Reference in New Issue