Skip to content

Commit

Permalink
Fixed size limit for PAK files
Browse files Browse the repository at this point in the history
  • Loading branch information
G2-Games committed Sep 19, 2024
1 parent d67329b commit c2cf2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luca_pak/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Default for PakLimits {
fn default() -> Self {
Self {
entry_limit: 10_000, // 10,000 entries
size_limit: 10_000_000_000, // 10 gb
size_limit: u32::MAX as usize, // 10 gb
}
}
}
Expand Down

0 comments on commit c2cf2c6

Please sign in to comment.