From 754a6859d4b8f09ac8fa79db0f66570732398caa Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 10 Mar 2003 20:38:33 +0000 Subject: tiny improvement svn-id: r6793 --- scumm/bundle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/bundle.cpp b/scumm/bundle.cpp index a6bcf84d57..edc8516049 100644 --- a/scumm/bundle.cpp +++ b/scumm/bundle.cpp @@ -862,7 +862,7 @@ int32 Bundle::decompressCodec(int32 codec, byte *comp_input, byte *comp_output, while (left--) { curTableEntry = _destImcTable[curTablePos]; decompTable = curTableEntry - 2; - bitMask = (1 << decompTable) << 1; + bitMask = 2 << decompTable; readPos = src + (tableEntrySum >> 3); // FIXME - it seems the decoder often reads exactly one byte too -- cgit v1.2.3