From 78b168e4ce9f1ecffff98184a4f495be482f5d70 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 20 Jul 2024 22:15:08 -0400 Subject: [PATCH] Fix that funky formatting --- NDecrypt/Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/NDecrypt/Program.cs b/NDecrypt/Program.cs index 1f840ab..0645cf6 100644 --- a/NDecrypt/Program.cs +++ b/NDecrypt/Program.cs @@ -154,18 +154,18 @@ namespace NDecrypt if (!string.IsNullOrWhiteSpace(err)) Console.WriteLine($"Error: {err}"); - Console.WriteLine(@"Usage: NDecrypt.exe [flags] ... + Console.WriteLine(@"Usage: NDecrypt [flags] ... Possible values for : e, encrypt - Encrypt the input files d, decrypt - Decrypt the input files Possible values for [flags] (one or more can be used): --c, --citra - Enable using aes_keys.txt instead of keys.bin --dev, --development - Enable using development keys, if available --f, --force - Force operation by avoiding sanity checks --h, --hash - Output size and hashes to a companion file --k, --keyfile - Path to keys.bin or aes_keys.txt +-c, --citra Enable using aes_keys.txt instead of keys.bin +-dev, --development Enable using development keys, if available +-f, --force Force operation by avoiding sanity checks +-h, --hash Output size and hashes to a companion file +-k, --keyfile Path to keys.bin or aes_keys.txt can be any file or folder that contains uncompressed items. More than one path can be specified at a time.");