Skip to content

Commit 712b9e5

Browse files
authored
Merge pull request #683 from twpol/feature/command-line-syntax-1
fix: Clean up Simulator Tester help output to match dotnet-style
2 parents 5342950 + 031b297 commit 712b9e5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Source/Contrib/SimulatorTester/Program.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,15 @@ static void Main(string[] args)
4141
Console.WriteLine("{0} {1}", version.FileDescription, VersionInfo.VersionOrBuild);
4242
Console.WriteLine();
4343
Console.WriteLine("Usage:");
44-
Console.WriteLine(" {0} [options] <save-file>", Path.GetFileNameWithoutExtension(Application.ExecutablePath));
44+
Console.WriteLine(" {0} [options] <SAVE_FILE>", Path.GetFileNameWithoutExtension(Application.ExecutablePath));
45+
Console.WriteLine();
46+
Console.WriteLine("Arguments:");
47+
Console.WriteLine(" <SAVE_FILE> {0} save file to use", Application.ProductName);
4548
Console.WriteLine();
4649
Console.WriteLine("Options:");
47-
Console.WriteLine(" <save-file> {0} save file to use", Application.ProductName);
4850
Console.WriteLine(" /quiet Do not show summary of simulation (only exit code is set)");
4951
Console.WriteLine(" /verbose Show version and settings (similar to a {0} log)", Application.ProductName);
50-
Console.WriteLine(" /fps <fps> Set the simulation frame-rate [default: 10]");
52+
Console.WriteLine(" /fps <FPS> Set the simulation frame-rate [default: 10]");
5153
Console.WriteLine(" /help Show help and usage information");
5254
Console.WriteLine(" ...and any standard {0} option", Application.ProductName);
5355
Console.WriteLine();

0 commit comments

Comments
 (0)