Fix the preset -3e.

depth=0 was missing.
This commit is contained in:
Lasse Collin 2010-09-26 18:10:31 +03:00
parent 2577da9ebd
commit 075257ab04
1 changed files with 1 additions and 0 deletions

View File

@ -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;