mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Merge pull request #96197 from jsjtxietian/splash-msg
Improve error message when loading non-PNG splash image
This commit is contained in:
commit
8186fabc8f
@ -3394,7 +3394,8 @@ void Main::setup_boot_logo() {
|
|||||||
boot_logo.instantiate();
|
boot_logo.instantiate();
|
||||||
Error load_err = ImageLoader::load_image(boot_logo_path, boot_logo);
|
Error load_err = ImageLoader::load_image(boot_logo_path, boot_logo);
|
||||||
if (load_err) {
|
if (load_err) {
|
||||||
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.");
|
||||||
|
ERR_PRINT("Non-existing or invalid boot splash at '" + boot_logo_path + +"'. " + msg + " Loading default splash.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user