From 78fceae0009494b57f25f97d4656b838035b1703 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Fri, 12 Jul 2024 00:43:49 -0500 Subject: [PATCH] Added CZ5 wanted message --- cz/src/dynamic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cz/src/dynamic.rs b/cz/src/dynamic.rs index 8e28e5c..865138b 100644 --- a/cz/src/dynamic.rs +++ b/cz/src/dynamic.rs @@ -54,7 +54,7 @@ impl DynamicCz { CzVersion::CZ2 => cz2::decode(input)?, CzVersion::CZ3 => cz3::decode(input, &header_common)?, CzVersion::CZ4 => cz4::decode(input, &header_common)?, - CzVersion::CZ5 => unimplemented!(), + CzVersion::CZ5 => unimplemented!("CZ5 files are not implemented! Please contact the application developers about this file."), }; let image_size = header_common.width() as usize * header_common.height() as usize;