print fourcc on unrecognized image format
This commit is contained in:
parent
ff85efa54f
commit
afa9e7447d
@ -344,7 +344,7 @@ fn load_image<R:Read+Seek+std::io::BufRead>(input:&mut R)->AResult<image::Dynami
|
||||
match &fourcc{
|
||||
b"\x89PNG"=>Ok(image::load(input,image::ImageFormat::Png)?),
|
||||
b"JPEG"=>Ok(image::load(input,image::ImageFormat::Jpeg)?),
|
||||
_=>Err(anyhow::Error::msg("Unknown texture format")),
|
||||
other=>Err(anyhow::Error::msg(format!("Unknown texture format {:?}",other))),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user