From c27eeafce4224dd9bcf0f8ed7827003e50e82b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 31 Aug 2014 22:14:16 +0200 Subject: [PATCH] /? argument fix on windows --- .../decompiler/flash/console/CommandLineArgumentParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 5c78aed29..eef680e61 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -377,7 +377,7 @@ public class CommandLineArgumentParser { parseReplace(args); } else if (nextParam.equals("-as3compiler")) { ActionScriptParser.compile(null /*?*/, args.remove(), args.remove()); - } else if (nextParam.equals("-help") || nextParam.equals("--help") || nextParam.equals("/?")) { + } else if (nextParam.equals("-help") || nextParam.equals("--help") || nextParam.equals("/?") || nextParam.equals("\\_") /* /? translates as this on windows */) { printHeader(); printCmdLineUsage(); System.exit(0);