From afa9e7447d22869c736d57f7f56d2d7b127eea3b Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Mon, 2 Oct 2023 19:55:10 -0700
Subject: [PATCH] print fourcc on unrecognized image format

---
 src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index b49f474..b7b913d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -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))),
     }
 }