From 16ec2b4f59367db33dc1117bc1a73a1de7ee3d5b Mon Sep 17 00:00:00 2001 From: Li Date: Wed, 7 Sep 2022 19:26:53 +1200 Subject: [PATCH] Fix example --- CXMLCli/Program.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CXMLCli/Program.cs b/CXMLCli/Program.cs index 12b49c2..3bbba08 100644 --- a/CXMLCli/Program.cs +++ b/CXMLCli/Program.cs @@ -104,9 +104,8 @@ namespace CXMLCli Console.WriteLine("\t-d --decompile Decompile CXML to XML."); Console.WriteLine("\t-c --compile Compile XML to CXML"); Console.WriteLine("\t-s --symbols Use Symbol File (.rcd)"); - Console.WriteLine("Example Decompile: -i " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " common_resource.rco -o common_resource.xml -d -p"); - Console.WriteLine("Example Compile: -i " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " common_resource.xml -o common_resource.rco -c"); - Console.WriteLine("Default functonality is to Decompile,\nThis is canceled if any other arguments passed."); + Console.WriteLine("Example Decompile: " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " -i common_resource.rco -o common_resource.xml -d -p"); + Console.WriteLine("Example Compile: " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " -i common_resource.xml -o common_resource.rco -c"); return 0; }