mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 22:42:14 +00:00
Fixed #1990 Cloning DefineSprite causing incorrect tags written
This commit is contained in:
@@ -1608,7 +1608,7 @@ public class SWFInputStream implements AutoCloseable {
|
||||
tagLength = available;
|
||||
}
|
||||
|
||||
ByteArrayRange dataRange = new ByteArrayRange(swf.uncompressedData, (int) pos, (int) (tagLength + headerLength));
|
||||
ByteArrayRange dataRange = new ByteArrayRange(this.data, (int) pos, (int) (tagLength + headerLength));
|
||||
skipBytes(tagLength);
|
||||
|
||||
TagStub tagStub = new TagStub(swf, tagID, "Unresolved", dataRange, tagDataStream);
|
||||
|
||||
Reference in New Issue
Block a user