Skip to content

Commit

Permalink
Merge pull request #55269 from Calinou/boot-splash-fix-missing-strip-…
Browse files Browse the repository at this point in the history
…edges
  • Loading branch information
akien-mga authored Nov 23, 2021
2 parents 19223f3 + 15e8c40 commit 5efe80f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5efe80f

Please sign in to comment.