Add note to `--help` re: rom argument

thanks MS
This commit is contained in:
YoshiRulz 2024-12-15 22:50:14 +10:00
parent 6cb19d8b8e
commit ab5d92f319
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace BizHawk.Client.Common
: base(aliases, description) {}
}
private static readonly Argument<string?> 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 Argument<string?> ArgumentRomFilePath = new(name: "rom", () => null, description: "path; if specified, the file will be loaded the same way as it would be from `File` > `Open...`; this argument can and should be given LAST despite what it says at the top of --help");
private static readonly IReadOnlyList<Option> GeneratedOptions;