diff options
| author | Jonathan Gray | 2003-08-22 01:18:49 +0000 | 
|---|---|---|
| committer | Jonathan Gray | 2003-08-22 01:18:49 +0000 | 
| commit | d9a78a5feb47fd6ee352ab6ed59d423113acf1a3 (patch) | |
| tree | 4d06796bd797637863c588ae9ac4d92b146e74b8 | |
| parent | 47c33674ecc2b57caa59ebd10217ab21c9a81f95 (diff) | |
| download | scummvm-rg350-d9a78a5feb47fd6ee352ab6ed59d423113acf1a3.tar.gz scummvm-rg350-d9a78a5feb47fd6ee352ab6ed59d423113acf1a3.tar.bz2 scummvm-rg350-d9a78a5feb47fd6ee352ab6ed59d423113acf1a3.zip  | |
change description of -b option to be more correct, also some consistency in -h output
svn-id: r9811
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | common/gameDetector.cpp | 52 | 
2 files changed, 27 insertions, 27 deletions
@@ -377,7 +377,7 @@ Command Line Options:          -w[<file>]     - Write configuration file          -v             - Show version information and exit          -z             - Display list of games -        -b<num>        - Start in room <num>. +        -b<num>        - Pass number to the boot script (boot param)          -d[<num>]      - Set debug verbosity to <num>          -u             - Dump scripts if a directory called 'dumps' exists in                           current directory diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index 278dbd0590..95786c4cc5 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -51,42 +51,42 @@ static const char USAGE_STRING[] =  	"Syntax:\n"  	"\tscummvm [OPTIONS] [game]\n"  	"Options:\n" -	"\t-p<path>       - look for game in <path>\n" -	"\t-x[<num>]      - load this savegame (default: 0 - autosave)\n" -	"\t-f             - fullscreen mode\n" -	"\t-g<mode>       - graphics mode (normal,2x,3x,2xsai,super2xsai,\n" +	"\t-p<path>       - Look for game in <path>\n" +	"\t-x[<num>]      - Load this savegame (default: 0 - autosave)\n" +	"\t-f             - Fullscreen mode\n" +	"\t-g<mode>       - Graphics mode (normal,2x,3x,2xsai,super2xsai,\n"  	"\t                 supereagle,advmame2x, advmame3x,tv2x,dotmatrix)\n" -	"\t-e<mode>       - set music engine (see README for details)\n" -	"\t-a             - specify game is amiga version\n" -	"\t-q<lang>       - specify language (en,de,fr,it,pt,es,jp,zh,kr,se,\n" +	"\t-e<mode>       - Set music engine (see README for details)\n" +	"\t-a             - Specify game is amiga version\n" +	"\t-q<lang>       - Specify language (en,de,fr,it,pt,es,jp,zh,kr,se,\n"  	"\t                 gb,hb)\n"  	"\n" -	"\t-c<num>        - use cdrom <num> for cd audio\n" -	"\t-m<num>        - set music volume to <num> (0-255)\n" -	"\t-o<num>        - set master volume to <num> (0-255)\n" -	"\t-s<num>        - set sfx volume to <num> (0-255)\n" -	"\t-t<num>        - set music tempo (50-200, default 100%%)\n" +	"\t-c<num>        - Use cdrom <num> for cd audio\n" +	"\t-m<num>        - Set music volume to <num> (0-255)\n" +	"\t-o<num>        - Set master volume to <num> (0-255)\n" +	"\t-s<num>        - Set sfx volume to <num> (0-255)\n" +	"\t-t<num>        - Set music tempo (50-200, default 100%%)\n"  	"\n" -	"\t-n             - no subtitles for speech\n" -	"\t-y             - set text speed (default: 60)\n" +	"\t-n             - No subtitles for speech\n" +	"\t-y             - Set text speed (default: 60)\n"  	"\n" -	"\t-l<file>       - load config file instead of default\n" +	"\t-l<file>       - Load config file instead of default\n"  #if defined(UNIX) -	"\t-w[<file>]     - write to config file [~/.scummvmrc]\n" +	"\t-w[<file>]     - Write to config file [~/.scummvmrc]\n"  #else -	"\t-w[<file>]     - write to config file [scummvm.ini]\n" +	"\t-w[<file>]     - Write to config file [scummvm.ini]\n"  #endif -	"\t-v             - show version info and exit\n" -	"\t-h             - display this text and exit\n" -	"\t-z             - display list of games\n" +	"\t-v             - Show version info and exit\n" +	"\t-h             - Display this text and exit\n" +	"\t-z             - Display list of games\n"  	"\n" -	"\t-b<num>        - start in room <num>\n" -	"\t-d[<num>]      - enable debug output (debug level [1])\n" -	"\t-u             - dump scripts\n" +	"\t-b<num>        - Pass number to the boot script (boot param)\n" +	"\t-d[<num>]      - Enable debug output (debug level [1])\n" +	"\t-u             - Dump scripts\n"  	"\n" -	"\t--multi-midi   - enable combination Adlib and native MIDI\n" -	"\t--native-mt32  - true Roland MT-32 (disable GM emulation)\n" -	"\t--aspect-ratio - enable aspect ratio correction\n" +	"\t--multi-midi   - Enable combination Adlib and native MIDI\n" +	"\t--native-mt32  - True Roland MT-32 (disable GM emulation)\n" +	"\t--aspect-ratio - Enable aspect ratio correction\n"  #ifndef DISABLE_SCUMM  	"\t--demo-mode    - Start demo mode of Maniac Mansion (Classic version)\n"  #endif  | 
