diff options
| author | James Brown | 2002-12-28 12:20:55 +0000 | 
|---|---|---|
| committer | James Brown | 2002-12-28 12:20:55 +0000 | 
| commit | 902b1c6cf142005e42f933558df3f957425d1ea2 (patch) | |
| tree | 4041c36627cf6a0b6949e771b5f832c57bd485fc | |
| parent | 5eb1a76c6b72d22cebd1a9b60a5c76b14f6feac1 (diff) | |
| download | scummvm-rg350-902b1c6cf142005e42f933558df3f957425d1ea2.tar.gz scummvm-rg350-902b1c6cf142005e42f933558df3f957425d1ea2.tar.bz2 scummvm-rg350-902b1c6cf142005e42f933558df3f957425d1ea2.zip  | |
decluttering
svn-id: r6224
| -rw-r--r-- | common/gameDetector.cpp | 27 | 
1 files changed, 16 insertions, 11 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index 973fe9f178..802a94e648 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -38,34 +38,39 @@                              else option = (*s == '\0' ? current_option : s);                    \                              current_option = NULL +// DONT FIXME: DO NOT ORDER ALPHABETICALY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :)  static const char USAGE_STRING[] =   	"ScummVM - Scumm Interpreter\n"  	"Syntax:\n"  	"\tscummvm [-v] [-d[<num>]] [-n] [-b<num>] [-t<num>] [-s<num>] [-p<path>] [-m<num>] [-f] game\n"  	"Flags:\n" -	"\t-a         - specify game is amiga version\n" -	"\t-b<num>    - start in room <num>\n" -	"\t-c<num>    - use cdrom <num> for cd audio\n" -	"\t-d[<num>]  - enable debug output (debug level [1])\n" -	"\t-e<mode>   - set music engine (see README for details)\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,supereagle,advmame2x)\n" -	"\t-l<file>   - load config file instead of default\n" +	"\t-e<mode>   - set music engine (see README for details)\n" +	"\t-a         - specify game is amiga version\n" +	"\n" +	"\t-c<num>    - use cdrom <num> for cd audio\n"  	"\t-m<num>    - set music volume to <num> (0-255)\n" -	"\t-n         - no subtitles for speech\n"  	"\t-o<num>    - set master volume to <num> (0-255)\n" -	"\t-p<path>   - look for game in <path>\n"  	"\t-s<num>    - set sfx volume to <num> (0-255)\n"  	"\t-t<num>    - set music tempo (default- adlib: 0x1D9000, midi: 0x4A0000)\n" -	"\t-v         - show version info and exit\n" +	"\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"  #if defined(UNIX)  	"\t-w[<file>] - write to config file [~/.scummvmrc]\n"  #else  	"\t-w[<file>] - write to config file [scummvm.ini]\n"  #endif -	"\t-x[<num>]  - save game slot to load (default: autosave)\n" -	"\t-y         - set text speed (default: 60)\n" +	"\t-v         - show version info 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"  ;  | 
