diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-11 13:38:34 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-11 13:38:34 +0100 |
commit | b3ae58d1ab1f3b35b4a86234e424b3675af323e5 (patch) | |
tree | 6887335a582a9e947e060e5931e3f325d67aab17 /src/main.rs | |
parent | d8d00eb146241978ef21ed4d6c35ac9c68b1a86e (diff) | |
download | unity-tools-b3ae58d1ab1f3b35b4a86234e424b3675af323e5.tar unity-tools-b3ae58d1ab1f3b35b4a86234e424b3675af323e5.tar.bz2 unity-tools-b3ae58d1ab1f3b35b4a86234e424b3675af323e5.tar.zst |
pub things and rename compression scheme to lowercase
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
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(()) |