cleanup with "Inspect and Transform"

This commit is contained in:
Honfika
2013-11-07 00:26:49 +01:00
parent 9870157b6b
commit bef5f0ae67
69 changed files with 821 additions and 738 deletions

View File

@@ -471,7 +471,7 @@ public class SWFInputStream extends InputStream {
}
for (int bit = 0; bit < nBits; bit++) {
int nb = (tempByte >> (7 - bitPos)) & 1;
ret = ret + (nb << (nBits - 1 - bit));
ret += (nb << (nBits - 1 - bit));
bitPos++;
if (bitPos == 8) {
bitPos = 0;