mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 07:12:55 -05:00
Bumped version
This commit is contained in:
parent
002eda0612
commit
3bd0980313
3 changed files with 5 additions and 5 deletions
|
@ -3,7 +3,7 @@ resolver = "2"
|
|||
members = [
|
||||
"cz",
|
||||
"experimental",
|
||||
"luca_pak",
|
||||
"luca_pak", "testing",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "luca_pak"
|
||||
edition = "2021"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
description = """
|
||||
A crate for parsing and modifying PAK files from the LUCA System engine by
|
||||
Prototype Ltd.
|
||||
|
|
|
@ -263,9 +263,9 @@ impl Pak {
|
|||
remainder = 0;
|
||||
}
|
||||
|
||||
println!("entry len {}", entry.data.len());
|
||||
println!("remainder {}", remainder);
|
||||
println!("block_offset {} - expected offset {}", block_offset, entry.offset);
|
||||
//println!("entry len {}", entry.data.len());
|
||||
//println!("remainder {}", remainder);
|
||||
//println!("block_offset {} - expected offset {}", block_offset, entry.offset);
|
||||
output.write_all(&entry.data)?;
|
||||
output.write_all(&vec![0u8; remainder])?;
|
||||
block_offset += block_size as u32;
|
||||
|
|
Loading…
Reference in a new issue