Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Dec 4, 2023
1 parent 658bedf commit 90cc6b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/target
*.Yay0
*.Yaz0
*.bin

2 changes: 1 addition & 1 deletion src/yay0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn decompress_yay0(bytes: Vec<u8>) -> Vec<u8> {
chunk_idx += 1;
count = count_modifier as usize + 18;
} else {
count = count + 2;
count += 2;
}

for i in 0..count {
Expand Down

0 comments on commit 90cc6b1

Please sign in to comment.