From ab129bcf35816044ee1d11749df0ac0eef533f46 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 4 Jul 2024 23:04:52 +1000 Subject: [PATCH] Improve documentation of CLI flags (output of `--help`) --- src/BizHawk.Client.Common/ArgParser.cs | 35 +++++++++++++------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/BizHawk.Client.Common/ArgParser.cs b/src/BizHawk.Client.Common/ArgParser.cs index 02796fd981..117cf888b1 100644 --- a/src/BizHawk.Client.Common/ArgParser.cs +++ b/src/BizHawk.Client.Common/ArgParser.cs @@ -23,47 +23,47 @@ namespace BizHawk.Client.Common : base(name: name, description: description) {} } - private static readonly Argument ArgumentRomFilePath = new("rom", () => null); + private static readonly Argument ArgumentRomFilePath = new(name: "rom", () => null, description: "path; if specified, the file will be loaded the same way as it would be from `File` > `Open...`"); private static readonly IReadOnlyList