diff options
author | Travis Howell | 2003-09-05 07:58:37 +0000 |
---|---|---|
committer | Travis Howell | 2003-09-05 07:58:37 +0000 |
commit | 36affb339699f5247b6c067490abf9fdc98bb32e (patch) | |
tree | 7b34f06782df63a6e2c7426977f57d2ec63e2ba3 | |
parent | c3d61acd5c909ba8c8f9445d24d64c12499a2a67 (diff) | |
download | scummvm-rg350-36affb339699f5247b6c067490abf9fdc98bb32e.tar.gz scummvm-rg350-36affb339699f5247b6c067490abf9fdc98bb32e.tar.bz2 scummvm-rg350-36affb339699f5247b6c067490abf9fdc98bb32e.zip |
Update docs for new flags
svn-id: r10001
-rw-r--r-- | README | 9 | ||||
-rw-r--r-- | common/gameDetector.cpp | 4 |
2 files changed, 10 insertions, 3 deletions
@@ -376,8 +376,7 @@ Command Line Options: -f - Full-screen mode. (-F forces window mode.) -g<mode> - Select graphics scaler. See below. -e<mode> - Select sound engine. See below. - -a - Enable amiga pal conversion, for playing Amiga - versions + -a - Specify game is Amiga version -q<lang> - Select language. See below. -c<num> - Drive to play cd audio from. E.g., 0 is first drive. -m<num> - Set the music volume, 0-255. Default is '192' @@ -394,6 +393,8 @@ Command Line Options: -d[<num>] - Set debug verbosity to <num> -u - Dump scripts if a directory called 'dumps' exists in current directory + --atari-st - Specify game is Atari ST version + --macintosh - Specify game is Macintosh version --multi-midi - Enable combination Adlib and native MIDI --native-mt32 - True Roland MT-32 (disable GM emulation) --fullscreen - Full-screen mode (same as -f) @@ -808,6 +809,10 @@ The following keywords are recognized: amiga bool Tells ScummVM whether or not a game is the Amiga version + atari_st bool Tells ScummVM whether or not a game is the + Atari ST version + macintosh bool Tells ScummVM whether or not a game is the + Macintosh version basename string path string The path to where a game's data files are read_only bool If true, ScummVM will never try to overwrite diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index 25ffcc3936..57357814f4 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -57,7 +57,7 @@ static const char USAGE_STRING[] = "\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-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" @@ -84,6 +84,8 @@ static const char USAGE_STRING[] = "\t-d[<num>] - Enable debug output (debug level [1])\n" "\t-u - Dump scripts\n" "\n" + "\t--atari-st - Specify game is Atari ST version\n" + "\t--macintosh - Specify game is Macintosh version\n" "\t--multi-midi - Enable combination Adlib and native MIDI\n" "\t--native-mt32 - True Roland MT-32 (disable GM emulation)\n" "\t--fullscreen - Full-screen mode (same as -f)\n" |