mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 22:42:14 +00:00
GFX testdata
This commit is contained in:
@@ -1215,9 +1215,15 @@ public class SWFInputStream implements AutoCloseable {
|
||||
|
||||
boolean doParse = true;
|
||||
|
||||
if (parseTags && !parallel1 && doParse && (tag instanceof TagStub)) {
|
||||
if (((parseTags && !parallel1 && doParse) || (tag.getId() == ExporterInfo.ID)) && (tag instanceof TagStub)) {
|
||||
tag = resolveTag((TagStub) tag, level, parallel, skipUnusualTags, lazy, true);
|
||||
}
|
||||
if (tag instanceof ExporterInfo) {
|
||||
ExporterInfo ei = (ExporterInfo) tag;
|
||||
if (swf != null) {
|
||||
swf.setExporterInfo(ei);
|
||||
}
|
||||
}
|
||||
DumpInfo di = dumpInfo;
|
||||
if (di != null && tag != null) {
|
||||
di.name = tag.getName();
|
||||
|
||||
Reference in New Issue
Block a user