Added missing backslash, oops

svn-id: r21561
This commit is contained in:
Max Horn 2006-04-02 18:02:16 +00:00
parent 9339e651aa
commit 3686733595

View File

@ -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".