Print CLI flags as received back to stdout

This commit is contained in:
YoshiRulz 2025-05-12 21:53:51 +10:00
parent 3a4ebe95f0
commit dc67699b9e
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -147,6 +147,7 @@ namespace BizHawk.Client.Common
public static int? ParseArguments(out ParsedCLIFlags parsed, string[] args)
{
parsed = default;
if (args.Length is not 0) Console.WriteLine($"parsing command-line flags: {string.Join(" ", args)}");
var result = Parser.Parse(args);
if (result.Errors.Count is not 0)
{