mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Added missing backslash, oops
svn-id: r21561
This commit is contained in:
parent
9339e651aa
commit
3686733595
@ -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".
|
||||
|
Loading…
Reference in New Issue
Block a user