diff options
| author | Max Horn | 2006-04-02 18:02:16 +0000 | 
|---|---|---|
| committer | Max Horn | 2006-04-02 18:02:16 +0000 | 
| commit | 36867335954bdbbdc82fe79a1bea6c1e58de62d5 (patch) | |
| tree | 65fec8a4a9ef3dfe9a6859b71aad63ee23b3c2af | |
| parent | 9339e651aa90d3798a394428c32bafc3ba6a9f53 (diff) | |
| download | scummvm-rg350-36867335954bdbbdc82fe79a1bea6c1e58de62d5.tar.gz scummvm-rg350-36867335954bdbbdc82fe79a1bea6c1e58de62d5.tar.bz2 scummvm-rg350-36867335954bdbbdc82fe79a1bea6c1e58de62d5.zip | |
Added missing backslash, oops
svn-id: r21561
| -rw-r--r-- | base/gameDetector.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index e275007c2d..a138a80c85 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -342,7 +342,7 @@ GameDescriptor GameDetector::findGame(const String &gameName, const Plugin **plu  			boolValue = !strcmp(s, longCmd); \  			s += boolValue ? (sizeof(longCmd) - 1) : (sizeof("no-"longCmd) - 1); \  		} \ -		if (*s != '\0') goto unknownOption; +		if (*s != '\0') goto unknownOption; \  		const char *option = boolValue ? "true" : "false";  // Use this for options which never have a value, i.e. for 'commands', like "--help". | 
