Skip to content

Commit

Permalink
Minor log changes for release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricky-James committed May 21, 2023
1 parent de97a02 commit 4e890fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions FFXCutsceneRemover/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public CsrConfigBinder(Option<bool?> optCsrOn,
private static bool ResolveMandatoryBoolArg(Option<bool?> opt)
{
Console.WriteLine(opt.Description);
Console.WriteLine($"HINT: You can also specify {string.Join(' ', opt.Aliases)} on the command line.");
return Console.ReadLine().ToUpper()[0] == 'Y';
}

Expand Down Expand Up @@ -69,7 +68,7 @@ class Program

static void Main(string[] args)
{
DiagnosticLog.Information($"Cutscene Remover for Final Fantasy X, version {majorID}.{minorID}.{patchID}-dev");
DiagnosticLog.Information($"Cutscene Remover for Final Fantasy X, version {majorID}.{minorID}.{patchID}");
if (args.Length > 0) DiagnosticLog.Information($"!!! LAUNCHED WITH COMMAND-LINE OPTIONS: {string.Join(' ', args)} !!!");

Option<bool?> optCsrOn = new Option<bool?>("--csr", "Enable CSR? [Y/N]");
Expand Down

0 comments on commit 4e890fe

Please sign in to comment.