Fix description of -dedicated

Before this change, USAGE.md said that -dedicated was a boolean option
and that it took 0 arguments. This is not correct, and it contradicts
the wiki’s documentation for -dedicated [1]. This commit fixes that
issue.

[1]: <https://github.com/DescentDevelopers/Descent3/wiki/Running-Descent-3#command-line-options>
This commit is contained in:
Jason Yundt 2024-10-06 09:17:16 -04:00
parent 4ff0665dc4
commit d85e0b606f

View File

@ -84,14 +84,14 @@ from this same folder.
Here brief usage of command line options, supported by game.
| Option | Type | Default | Platform | Description |
|----------------------|---------|-------------------------------------|----------|-------------------------------------------------------------------|
| `-dedicated`, `-d` | boolean | Off | all | Run game in dedicated mode |
| `-display` | integer | 0 | all | Run game on the selected display |
| `-fullscreen`, `-f` | boolean | On | all | Run game in fullscreen mode |
| `-logfile` | boolean | Off | all | Enable file logging to Descent3.log |
| `-loglevel <LEVEL>` | string | INFO (on Release), DEBUG (on Debug) | all | Set log level (NONE, VERBOSE, DEBUG, INFO, WARNING, ERROR, FATAL) |
| `-nomousegrab`, `-m` | boolean | Off | all | Disable mouse capture |
| `-service` | boolean | Off | all | Run game in service mode |
| `-winconsole` | boolean | Off | WIN | Enable windows console (off by default) |
| `-windowed`, `-w` | boolean | Off | all | Run game in windowed mode |
| Option | Type | Default | Platform | Description |
|------------------------------------------------|---------|-------------------------------------|----------|-------------------------------------------------------------------|
| `-dedicated <config file>`, `-d <config file>` | path | None | all | Run game in dedicated mode |
| `-display` | integer | 0 | all | Run game on the selected display |
| `-fullscreen`, `-f` | boolean | On | all | Run game in fullscreen mode |
| `-logfile` | boolean | Off | all | Enable file logging to Descent3.log |
| `-loglevel <LEVEL>` | string | INFO (on Release), DEBUG (on Debug) | all | Set log level (NONE, VERBOSE, DEBUG, INFO, WARNING, ERROR, FATAL) |
| `-nomousegrab`, `-m` | boolean | Off | all | Disable mouse capture |
| `-service` | boolean | Off | all | Run game in service mode |
| `-winconsole` | boolean | Off | WIN | Enable windows console (off by default) |
| `-windowed`, `-w` | boolean | Off | all | Run game in windowed mode |