mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 15:22:53 -05:00
Fixed size limit for PAK files
This commit is contained in:
parent
d67329bcc1
commit
c2cf2c6793
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ impl Default for PakLimits {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
entry_limit: 10_000, // 10,000 entries
|
entry_limit: 10_000, // 10,000 entries
|
||||||
size_limit: 10_000_000_000, // 10 gb
|
size_limit: u32::MAX as usize, // 10 gb
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue