From 3ae2da1d624cf285705234241e35eec3083bdac9 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sun, 13 Mar 2016 10:36:48 +0100 Subject: [PATCH] show swf info when swf found in memor on command line search --- .../decompiler/flash/console/CommandLineArgumentParser.java | 1 + 1 file changed, 1 insertion(+) 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); } }