We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad0edb8 + c7a0e39 commit 8186fabCopy full SHA for 8186fab
main/main.cpp
@@ -3394,7 +3394,8 @@ void Main::setup_boot_logo() {
3394
boot_logo.instantiate();
3395
Error load_err = ImageLoader::load_image(boot_logo_path, boot_logo);
3396
if (load_err) {
3397
- ERR_PRINT("Non-existing or invalid boot splash at '" + boot_logo_path + "'. Loading default splash.");
+ String msg = (boot_logo_path.ends_with(".png") ? "" : "The only supported format is PNG.");
3398
+ ERR_PRINT("Non-existing or invalid boot splash at '" + boot_logo_path + +"'. " + msg + " Loading default splash.");
3399
}
3400
3401
} else {
0 commit comments