diff options
| author | Max Horn | 2003-10-20 20:06:29 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-10-20 20:06:29 +0000 | 
| commit | 89a9a35a0ba7dde96d858da8b9f4f64794aedb58 (patch) | |
| tree | 094c3d4c50a08581a72f519135c1c55a3f5d2c64 | |
| parent | d3dd9f6216a3e7f49b3eaf6fdc8d97cfe26c219c (diff) | |
| download | scummvm-rg350-89a9a35a0ba7dde96d858da8b9f4f64794aedb58.tar.gz scummvm-rg350-89a9a35a0ba7dde96d858da8b9f4f64794aedb58.tar.bz2 scummvm-rg350-89a9a35a0ba7dde96d858da8b9f4f64794aedb58.zip | |
usage string has to be updated (as I explained in various commit messages and in #scummv, but it seems not everybody saw that :-)
svn-id: r10918
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | base/gameDetector.cpp | 8 | 
2 files changed, 7 insertions, 3 deletions
| @@ -315,6 +315,8 @@ arguments - see the next section.  5.1) Command Line Options:  ---- --------------------- + +THIS NEEDS TO BE UPDATED          scummvm [OPTIONS] [GAME]          [GAME]           - Short name of game to load. For example, 'monkey' for diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index e2caebc04a..3b95223c1a 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -43,7 +43,8 @@ static const char USAGE_STRING[] = "NoUsageString"; // save more data segment sp  #else  static const char USAGE_STRING[] =   	"ScummVM - Graphical Adventure Game Interpreter\n" -	"Syntax:\n" +	"New USAGE_STRING is missing here!\n"  +/*	"Syntax:\n"  	"  scummvm [OPTIONS] [game]\n"  	"Options:\n"  	"  -p<path>       - Look for game in <path>\n" @@ -90,6 +91,7 @@ static const char USAGE_STRING[] =  	"\n"  	"The meaning of long options can be inverted by prefixing them with \"no-\",\n"  	"e.g. \"--no-aspect-ratio\".\n" +*/  ;  #endif @@ -411,7 +413,7 @@ void GameDetector::parseCommandLine(int argc, char **argv) {  				ConfMan.set("cdrom", (int)strtol(option, 0, 10));  			END_OPTION -			DO_LONG_OPTION("joystick") +			DO_LONG_OPTION_OPT("joystick")  				ConfMan.set("joystick_num", (option != NULL) ? (int)strtol(option, 0, 10) : 0);  			END_OPTION @@ -565,7 +567,7 @@ bool GameDetector::detectMain() {  	}  	if (!detectGame()) { -		warning("%s is an invalid target. Use the -z parameter to list targets", _targetName.c_str()); +		warning("%s is an invalid target. Use the --list-targets option to list targets", _targetName.c_str());  		return false;  	} | 
