mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 13:46:32 +00:00
Fixed #2425 ZIP/SWC reading - "Only DEFLATED entries can have EXT descriptor" message
This commit is contained in:
@@ -795,7 +795,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable {
|
||||
}*/
|
||||
|
||||
if (Configuration.getPlayerSWC() != null) {
|
||||
SWC swc = new SWC(new FileInputStream(Configuration.getPlayerSWC()));
|
||||
SWC swc = new SWC(Configuration.getPlayerSWC());
|
||||
//set allowRenameIdentifiers parameter to FALSE otherwise there will be an infinite loop
|
||||
SWF swf = new SWF(swc.getOpenable("library.swf"), null, null, null, true, false, true, null, "WINDOWS-1252", false);
|
||||
playerGlobalAbcIndex = new AbcIndexing(swf);
|
||||
@@ -803,7 +803,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable {
|
||||
}
|
||||
if (airGlobalAbcIndex == null) {
|
||||
if (Configuration.getAirSWC() != null) {
|
||||
SWC swc = new SWC(new FileInputStream(Configuration.getAirSWC()));
|
||||
SWC swc = new SWC(Configuration.getAirSWC());
|
||||
//set allowRenameIdentifiers to FALSE
|
||||
SWF swf = new SWF(swc.getOpenable("library.swf"), null, null, null, true, false, true, null, "WINDOWS-1252", false);
|
||||
airGlobalAbcIndex = new AbcIndexing(swf);
|
||||
|
||||
Reference in New Issue
Block a user