mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 15:55:10 +00:00
missing usage of autoLoadEmbeddedSwfs setting added
This commit is contained in:
@@ -85,12 +85,14 @@ public class DefineBinaryDataTag extends CharacterTag {
|
||||
reserved = sis.readUI32("reserved");
|
||||
binaryData = sis.readBytesEx(sis.available(), "binaryData");
|
||||
|
||||
try {
|
||||
SWF bswf = new SWF(new ByteArrayInputStream(binaryData), Configuration.parallelSpeedUp.get());
|
||||
bswf.fileTitle = "(SWF Data)";
|
||||
innerSwf = bswf;
|
||||
} catch (IOException | InterruptedException ex) {
|
||||
//ignore
|
||||
if (Configuration.autoLoadEmbeddedSwfs.get()) {
|
||||
try {
|
||||
SWF bswf = new SWF(new ByteArrayInputStream(binaryData), Configuration.parallelSpeedUp.get());
|
||||
bswf.fileTitle = "(SWF Data)";
|
||||
innerSwf = bswf;
|
||||
} catch (IOException | InterruptedException ex) {
|
||||
//ignore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user