[Scummvm-cvs-logs] CVS: scummvm/scumm bundle.cpp,1.34,1.35
Max Horn
fingolfin at users.sourceforge.net
Mon Mar 10 12:39:28 CET 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv18333
Modified Files:
bundle.cpp
Log Message:
tiny improvement <g>
Index: bundle.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/bundle.cpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- bundle.cpp 8 Mar 2003 23:35:46 -0000 1.34
+++ bundle.cpp 10 Mar 2003 20:38:33 -0000 1.35
@@ -862,7 +862,7 @@
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
More information about the Scummvm-git-logs
mailing list