mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
Move items from Debug tab in advanced settings to other tabs to avoid acidentally setting it,
reseting most of them by renaming.
This commit is contained in:
@@ -465,7 +465,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
public void writeRECT(RECT value) throws IOException {
|
||||
int nBits = 0;
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
nBits = Math.max(nBits, value.nbits);
|
||||
}
|
||||
|
||||
@@ -478,7 +478,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
nBits = enlargeBitCountS(nBits, yMin);
|
||||
nBits = enlargeBitCountS(nBits, yMax);
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
nBits = Math.max(nBits, value.nbits);
|
||||
}
|
||||
|
||||
@@ -640,7 +640,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
nBits = enlargeBitCountS(nBits, value.scaleX);
|
||||
nBits = enlargeBitCountS(nBits, value.scaleY);
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
nBits = Math.max(nBits, value.nScaleBits);
|
||||
}
|
||||
|
||||
@@ -654,7 +654,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
nBits = enlargeBitCountS(nBits, value.rotateSkew0);
|
||||
nBits = enlargeBitCountS(nBits, value.rotateSkew1);
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
nBits = Math.max(nBits, value.nRotateBits);
|
||||
}
|
||||
|
||||
@@ -666,7 +666,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
NTranslateBits = enlargeBitCountS(NTranslateBits, value.translateX);
|
||||
NTranslateBits = enlargeBitCountS(NTranslateBits, value.translateY);
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
NTranslateBits = Math.max(NTranslateBits, value.nTranslateBits);
|
||||
}
|
||||
|
||||
@@ -699,7 +699,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
Nbits = enlargeBitCountS(Nbits, value.blueAddTerm);
|
||||
}
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
Nbits = Math.max(Nbits, value.nbits);
|
||||
}
|
||||
|
||||
@@ -740,7 +740,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
Nbits = enlargeBitCountS(Nbits, value.alphaAddTerm);
|
||||
}
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
Nbits = Math.max(Nbits, value.nbits);
|
||||
}
|
||||
|
||||
@@ -1406,7 +1406,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
writeUB(1, 1); // typeFlag
|
||||
writeUB(1, 0); // curvedEdge
|
||||
int numBits = Math.max(getNeededBitsS(cer.controlDeltaX, cer.controlDeltaY, cer.anchorDeltaX, cer.anchorDeltaY) - 2, 0);
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
numBits = Math.max(numBits, cer.numBits);
|
||||
}
|
||||
|
||||
@@ -1421,7 +1421,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
writeUB(1, 1); // typeFlag
|
||||
writeUB(1, 1); // straightEdge
|
||||
int numBits = Math.max(getNeededBitsS(ser.deltaX, ser.deltaY) - 2, 0);
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
numBits = Math.max(numBits, ser.numBits);
|
||||
}
|
||||
|
||||
@@ -1447,7 +1447,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
writeUB(1, scr.stateMoveTo ? 1 : 0);
|
||||
if (scr.stateMoveTo) {
|
||||
int moveBits = getNeededBitsS(scr.moveDeltaX, scr.moveDeltaY);
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
moveBits = Math.max(moveBits, scr.moveBits);
|
||||
}
|
||||
|
||||
@@ -1471,7 +1471,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
fillBits = getNeededBitsU(scr.fillStyles.fillStyles.length);
|
||||
lineBits = getNeededBitsU(scr.lineStyles.lineStyles.length);
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
if (Configuration._debugCopy.get()) {
|
||||
fillBits = Math.max(fillBits, scr.numFillBits);
|
||||
lineBits = Math.max(lineBits, scr.numLineBits);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user