From 059d6416a71f1a11d73d1a0ba5c46479e33d3bbb Mon Sep 17 00:00:00 2001 From: M4rtin23 Date: Wed, 30 Dec 2020 17:16:36 -0300 Subject: [PATCH] Help spacing --- src/Commands.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Commands.cs b/src/Commands.cs index 4356547..b46c691 100644 --- a/src/Commands.cs +++ b/src/Commands.cs @@ -2,7 +2,7 @@ namespace ImaHex{ class Commands{ - static char[] options = {'h', 'd', 'v', 'k'}; + static char[] options = {'ñ', 'd', 'v', 'k'}; static string[] optionsLarge = {"help", "delete","version"}; static Action[] actions = {help, remove, version, keep}; static bool delete = true; @@ -34,11 +34,11 @@ static void help(){ Console.WriteLine( @"Usage: imahex [arguments] [path-to-file] Options: - -d, --delete Delete image at the end of the process (default) - -h, --help Show help + -d, --delete Delete image at the end of the process (default) + -h, --help Show help -k Keep edited image -l Ask for the path after the command is executed - -v, --version Show ImaHEX version" + -v, --version Show ImaHEX version" ); } static void remove(){