diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 83557c34a..91df326b0 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -1920,6 +1920,7 @@ public class CommandLineArgumentParser { if (s instanceof SwfInMemory) { SwfInMemory swf = (SwfInMemory) s; String fileName = cnt.getAndIncrement() + ".swf"; + System.out.println("SWF found (" + fileName + "). Version: " + swf.version + ", file size: " + swf.fileSize + ", address: " + swf.address); Helper.writeFile(fileName, swf.is); } }