aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
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(())