From b3ae58d1ab1f3b35b4a86234e424b3675af323e5 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 11 Feb 2025 13:38:34 +0100 Subject: pub things and rename compression scheme to lowercase --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 4d91578..beab8a1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ fn main() -> anyhow::Result<()> { let mut fs = UnityFS::open(file)?; for node in fs.nodes().to_vec() { - if node.name.ends_with(".resource") || node.name.ends_with("resS") { + if node.name.ends_with(".resource") || node.name.ends_with(".resS") { continue; } let cab = fs.read(&node)?; @@ -16,8 +16,6 @@ fn main() -> anyhow::Result<()> { // continue; let file = read_serialized_file(cab)?; - eprintln!("{file:#?}"); - } Ok(()) -- cgit v1.2.3-70-g09d2