Closed da0ka closed 7 years ago
squeeze.c line 1088: if (options->ultra != 3) { break; } this comparison is always true. because options->ultra==2 in line 1055. so this loop can't pass over one time.
if (options->ultra != 3) { break; }
Nice find. I corrected this w/ the latest commit. This may improve compression w/ very aggressive settings. Thank you.
squeeze.c line 1088:
if (options->ultra != 3) { break; }
this comparison is always true. because options->ultra==2 in line 1055. so this loop can't pass over one time.