Merge pull request #2303 from degasus/master

no-gui: fix help string
This commit is contained in:
Markus Wick 2015-04-18 15:48:10 +02:00
commit c74ae3d27e

View file

@ -316,9 +316,9 @@ int main(int argc, char* argv[])
fprintf(stderr, "%s\n\n", scm_rev_str);
fprintf(stderr, "A multi-platform GameCube/Wii emulator\n\n");
fprintf(stderr, "Usage: %s [-e <file>] [-h] [-v]\n", argv[0]);
fprintf(stderr, " -e, --exec Load the specified file\n");
fprintf(stderr, " -h, --help Show this help message\n");
fprintf(stderr, " -v, --help Print version and exit\n");
fprintf(stderr, " -e, --exec Load the specified file\n");
fprintf(stderr, " -h, --help Show this help message\n");
fprintf(stderr, " -v, --version Print version and exit\n");
return 1;
}