mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 19:04:38 +00:00
do not copy big byte arrays 2...define binary tags
This commit is contained in:
@@ -738,7 +738,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
if (value.eventFlags.clipEventKeyPress) {
|
||||
sos.writeUI8(value.keyCode);
|
||||
}
|
||||
sos.write(value.actionBytes.getRangeData());
|
||||
sos.write(value.actionBytes);
|
||||
}
|
||||
byte[] data = baos.toByteArray();
|
||||
writeUI32(data.length); //actionRecordSize
|
||||
@@ -1080,7 +1080,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
sos.writeUB(1, value.condIdleToOverUp ? 1 : 0);
|
||||
sos.writeUB(7, value.condKeyPress);
|
||||
sos.writeUB(1, value.condOverDownToIdle ? 1 : 0);
|
||||
sos.write(value.actionBytes.getRangeData());
|
||||
sos.write(value.actionBytes);
|
||||
}
|
||||
byte[] data = baos.toByteArray();
|
||||
if (isLast) {
|
||||
|
||||
Reference in New Issue
Block a user