aboutsummaryrefslogtreecommitdiff
path: root/gameDetector.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-04-27 21:06:48 +0000
committerLionel Ulmer2002-04-27 21:06:48 +0000
commit8537266a89a8b08d0b5d2d1accb01e0e67cb89d4 (patch)
tree475480172c865fba0306a29335749b794c833fe6 /gameDetector.cpp
parent00c03b9a0d06c3cde47941cef3605162fab0205c (diff)
downloadscummvm-rg350-8537266a89a8b08d0b5d2d1accb01e0e67cb89d4.tar.gz
scummvm-rg350-8537266a89a8b08d0b5d2d1accb01e0e67cb89d4.tar.bz2
scummvm-rg350-8537266a89a8b08d0b5d2d1accb01e0e67cb89d4.zip
Applied Triskelios's patch for Unix-style configuration file (ie
.scummvmrc instead of scummvm.ini) svn-id: r4116
Diffstat (limited to 'gameDetector.cpp')
-rw-r--r--gameDetector.cpp36
1 files changed, 20 insertions, 16 deletions
diff --git a/gameDetector.cpp b/gameDetector.cpp
index cc364a653c..c6922776ea 100644
--- a/gameDetector.cpp
+++ b/gameDetector.cpp
@@ -37,22 +37,26 @@ static const char USAGE_STRING[] =
"Syntax:\n"
"\tscummvm [-v] [-d[<num>]] [-n] [-b<num>] [-t<num>] [-s<num>] [-p<path>] [-m<num>] [-f] game\n"
"Flags:\n"
- "\t-v - show version info and exit\n"
- "\t-c<num> - use cdrom <num> for cd audio\n"
- "\t-d[<num>] - enable debug output (level <num>)\n"
- "\t-n - no subtitles for speech\n"
- "\t-b<num> - start in room <num>\n"
- "\t-t<num> - set music tempo. Suggested: 1F0000\n"
- "\t-p<path> - look for game in <path>\n"
- "\t-m<num> - set music volume to <num> (0-100)\n"
- "\t-s<num> - set sfx volume to <num> (0-255)\n"
- "\t-e<mode> - set music engine. see readme.txt for details\n"
- "\t-r - emulate roland mt32 instruments\n"
- "\t-f - fullscreen mode\n"
- "\t-g<mode> - graphics mode. normal,2x,3x,2xsai,super2xsai,supereagle.advmame2x\n"
- "\t-a - specify game is amiga version\n"
- "\t-w[<file>]- write the config file\n"
- "\t-l<file> - load a different config file\n"
+ "\t-v - show version info and exit\n"
+ "\t-c<num> - use cdrom <num> for cd audio\n"
+ "\t-d[<num>] - enable debug output (debug level [1])\n"
+ "\t-n - no subtitles for speech\n"
+ "\t-b<num> - start in room <num>\n"
+ "\t-t<num> - set music tempo (suggested: 1F0000)\n"
+ "\t-p<path> - look for game in <path>\n"
+ "\t-m<num> - set music volume to <num> (0-100)\n"
+ "\t-s<num> - set sfx volume to <num> (0-255)\n"
+ "\t-e<mode> - set music engine (see readme.txt for details)\n"
+ "\t-r - emulate roland mt32 instruments\n"
+ "\t-f - fullscreen mode\n"
+ "\t-g<mode> - graphics mode (normal,2x,3x,2xsai,super2xsai,supereagle.advmame2x)\n"
+ "\t-a - specify game is amiga version\n"
+#if defined(UNIX) || defined(UNIX_X11)
+ "\t-w[<file>] - write to config file [~/.scummvmrc]\n"
+#else
+ "\t-w[<file>] - write to config file [scummvm.ini]\n"
+#endif
+ "\t-l<file> - load config file instead of default\n"
;
void GameDetector::updateconfig()