mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 10:54:52 +00:00
preserve bit count for debug copy of RECT objects
This commit is contained in:
@@ -434,6 +434,11 @@ public class SWFOutputStream extends OutputStream {
|
||||
*/
|
||||
public void writeRECT(RECT value) throws IOException {
|
||||
int nBits = 0;
|
||||
|
||||
if (Configuration.debugCopy.get()) {
|
||||
nBits = Math.max(nBits, value.nbits);
|
||||
}
|
||||
|
||||
int xMin = truncateTo31Bit(value.Xmin);
|
||||
int xMax = truncateTo31Bit(value.Xmax);
|
||||
int yMin = truncateTo31Bit(value.Ymin);
|
||||
|
||||
Reference in New Issue
Block a user