mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix the preset -3e.
depth=0 was missing.
This commit is contained in:
parent
2577da9ebd
commit
075257ab04
1 changed files with 1 additions and 0 deletions
|
@ -50,6 +50,7 @@ lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
|
|||
options->mf = LZMA_MF_BT4;
|
||||
if (level == 3 || level == 5) {
|
||||
options->nice_len = 192;
|
||||
options->depth = 0;
|
||||
} else {
|
||||
options->nice_len = 273;
|
||||
options->depth = 512;
|
||||
|
|
Loading…
Reference in a new issue