mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 06:01:57 +00:00
swf extracting fixed
This commit is contained in:
@@ -413,6 +413,10 @@ public final class SWF implements TreeItem {
|
||||
frameRate = sis.readUI8();
|
||||
frameCount = sis.readUI16();
|
||||
if (skipTagReading) {
|
||||
long toRead = fileSize - sis.getPos();
|
||||
if (toRead > 0) {
|
||||
sis.readBytes(toRead);
|
||||
}
|
||||
return;
|
||||
}
|
||||
tags = sis.readTagList(this, 0, parallelRead, true, !checkOnly, gfx);
|
||||
|
||||
Reference in New Issue
Block a user