mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 15:22:53 -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 = [
|
members = [
|
||||||
"cz",
|
"cz",
|
||||||
"experimental",
|
"experimental",
|
||||||
"luca_pak",
|
"luca_pak", "testing",
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "luca_pak"
|
name = "luca_pak"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = """
|
description = """
|
||||||
A crate for parsing and modifying PAK files from the LUCA System engine by
|
A crate for parsing and modifying PAK files from the LUCA System engine by
|
||||||
Prototype Ltd.
|
Prototype Ltd.
|
||||||
|
|
|
@ -263,9 +263,9 @@ impl Pak {
|
||||||
remainder = 0;
|
remainder = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
println!("entry len {}", entry.data.len());
|
//println!("entry len {}", entry.data.len());
|
||||||
println!("remainder {}", remainder);
|
//println!("remainder {}", remainder);
|
||||||
println!("block_offset {} - expected offset {}", block_offset, entry.offset);
|
//println!("block_offset {} - expected offset {}", block_offset, entry.offset);
|
||||||
output.write_all(&entry.data)?;
|
output.write_all(&entry.data)?;
|
||||||
output.write_all(&vec![0u8; remainder])?;
|
output.write_all(&vec![0u8; remainder])?;
|
||||||
block_offset += block_size as u32;
|
block_offset += block_size as u32;
|
||||||
|
|
Loading…
Reference in a new issue