From 9bd55e19a663b33c3c94360ae1237ebc9bb5fa90 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Thu, 19 Jul 2018 18:34:16 -0500 Subject: [PATCH] Update usage --- hactoolnet/CliParser.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hactoolnet/CliParser.cs b/hactoolnet/CliParser.cs index b03daed5..2bbf8cba 100644 --- a/hactoolnet/CliParser.cs +++ b/hactoolnet/CliParser.cs @@ -138,7 +138,7 @@ namespace hactoolnet sb.AppendLine(" -r, --raw Keep raw data, don\'t unpack."); sb.AppendLine(" -y, --verify Verify hashes."); sb.AppendLine(" -k, --keyset Load keys from an external file."); - sb.AppendLine(" -t, --intype=type Specify input file type [nca, switchfs]"); + sb.AppendLine(" -t, --intype=type Specify input file type [nca, switchfs, save]"); sb.AppendLine(" --titlekeys Load title keys from an external file."); sb.AppendLine("NCA options:"); sb.AppendLine(" --section0 Specify Section 0 file path."); @@ -156,8 +156,8 @@ namespace hactoolnet sb.AppendLine(" --listapps List application info."); sb.AppendLine(" --listtitles List title info for all titles."); sb.AppendLine(" --title Specify title ID to use."); - sb.AppendLine(" --outdir <dir> Specify directory path to save title to."); - sb.AppendLine(" --romfsdir <dir> Specify RomFS directory path."); + sb.AppendLine(" --outdir <dir> Specify directory path to save title to. (--title must be specified)"); + sb.AppendLine(" --romfsdir <dir> Specify RomFS directory path. (--title must be specified)"); return sb.ToString(); }