Skip to content

Commit

Permalink
Merge pull request #25 from nmoinvaz/fixes/ml-run-bits
Browse files Browse the repository at this point in the history
Fixed preprocessor definition ML_RUN_BITS_LIZv1 undefined.
  • Loading branch information
inikep authored Nov 3, 2020
2 parents 3aef793 + 5feb193 commit af8518c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lizard_decompress_liz.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ FORCE_INLINE int Lizard_decompress_LIZv1(
ctx->offset16Ptr = (BYTE*)((uintptr_t)ctx->offset16Ptr + (not_repCode & 2));
}
#else
if ((token >> ML_RUN_BITS_LIZv1) == 0)
if ((token >> ML_RUN_BITS) == 0)
{
last_off = -(intptr_t)MEM_readLE16(ctx->offset16Ptr);
ctx->offset16Ptr += 2;
Expand Down

0 comments on commit af8518c

Please sign in to comment.