瀏覽代碼

Add is png check and better err msg when loading splash imgae

jsjtxietian 1 年之前
父節點
當前提交
c7a0e39af1
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      main/main.cpp

+ 2 - 1
main/main.cpp

@@ -3307,7 +3307,8 @@ void Main::setup_boot_logo() {
 				boot_logo.instantiate();
 				Error load_err = ImageLoader::load_image(boot_logo_path, boot_logo);
 				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 {