mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 11:02:26 +00:00
cleanup with "Inspect and Transform"
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user