BASE: Print error messages on invalid command line parameters again
The condition was accidentally inverted when the Symbian port was removed, I belive.
This commit is contained in:
parent
b5f25a4dce
commit
2805e66bf0
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ namespace Base {
|
||||||
|
|
||||||
#ifndef DISABLE_COMMAND_LINE
|
#ifndef DISABLE_COMMAND_LINE
|
||||||
|
|
||||||
#if defined(__DS__)
|
#if !defined(__DS__)
|
||||||
static const char USAGE_STRING[] =
|
static const char USAGE_STRING[] =
|
||||||
"%s: %s\n"
|
"%s: %s\n"
|
||||||
"Usage: %s [OPTIONS]... [GAME]\n"
|
"Usage: %s [OPTIONS]... [GAME]\n"
|
||||||
|
@ -248,7 +248,7 @@ static void usage(const char *s, ...) {
|
||||||
vsnprintf(buf, STRINGBUFLEN, s, va);
|
vsnprintf(buf, STRINGBUFLEN, s, va);
|
||||||
va_end(va);
|
va_end(va);
|
||||||
|
|
||||||
#if defined(__DS__)
|
#if !defined(__DS__)
|
||||||
printf(USAGE_STRING, s_appName, buf, s_appName, s_appName);
|
printf(USAGE_STRING, s_appName, buf, s_appName, s_appName);
|
||||||
#endif
|
#endif
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue