mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
More command line parameter help text cleanup
git-svn-id: https://svn.eduke32.com/eduke32@6327 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3b1cf74fea
commit
bea9a73047
1 changed files with 4 additions and 2 deletions
|
@ -56,7 +56,7 @@ void G_ShowParameterHelp(void)
|
||||||
"-d [file.edm or #]\tPlay a demo\n"
|
"-d [file.edm or #]\tPlay a demo\n"
|
||||||
"-g [file.grp]\tLoad additional game data\n"
|
"-g [file.grp]\tLoad additional game data\n"
|
||||||
"-h [file.def]\tLoad an alternate definitions file\n"
|
"-h [file.def]\tLoad an alternate definitions file\n"
|
||||||
"-j [dir]\t\tAdd a directory to EDuke32's search list\n"
|
"-j [dir]\t\tAdd a directory to " APPNAME "'s search list\n"
|
||||||
"-l#\t\tStart game on level #, see -v\n"
|
"-l#\t\tStart game on level #, see -v\n"
|
||||||
"-map [file.map]\tLoad an external map file\n"
|
"-map [file.map]\tLoad an external map file\n"
|
||||||
"-mh [file.def]\tInclude an additional definitions module\n"
|
"-mh [file.def]\tInclude an additional definitions module\n"
|
||||||
|
@ -83,7 +83,7 @@ void G_ShowParameterHelp(void)
|
||||||
"-x [game.con]\tLoad custom CON script\n"
|
"-x [game.con]\tLoad custom CON script\n"
|
||||||
"-#\t\tLoad and run a game from slot # (0-9)\n"
|
"-#\t\tLoad and run a game from slot # (0-9)\n"
|
||||||
// "\n-?/--help\tDisplay this help message and exit\n"
|
// "\n-?/--help\tDisplay this help message and exit\n"
|
||||||
"\nSee eduke32 -debughelp for additional parameters for debugging"
|
"\nSee " APPBASENAME " -debughelp for additional parameters for debugging"
|
||||||
;
|
;
|
||||||
#ifdef WM_MSGBOX_WINDOW
|
#ifdef WM_MSGBOX_WINDOW
|
||||||
Bsnprintf(tempbuf, sizeof(tempbuf), HEAD2 " %s", s_buildRev);
|
Bsnprintf(tempbuf, sizeof(tempbuf), HEAD2 " %s", s_buildRev);
|
||||||
|
@ -344,6 +344,7 @@ void G_CheckCommandLine(int32_t argc, char const * const * argv)
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
#ifndef NETCODE_DISABLE
|
||||||
if (!Bstrcasecmp(c+1, "net"))
|
if (!Bstrcasecmp(c+1, "net"))
|
||||||
{
|
{
|
||||||
G_GameExit("EDuke32 no longer supports legacy networking.\n\n"
|
G_GameExit("EDuke32 no longer supports legacy networking.\n\n"
|
||||||
|
@ -353,6 +354,7 @@ void G_CheckCommandLine(int32_t argc, char const * const * argv)
|
||||||
"Other clients can then connect by typing \"connect [host]\" in the console.\n\n"
|
"Other clients can then connect by typing \"connect [host]\" in the console.\n\n"
|
||||||
"EDuke32 will now close.");
|
"EDuke32 will now close.");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (!Bstrcasecmp(c+1, "port"))
|
if (!Bstrcasecmp(c+1, "port"))
|
||||||
{
|
{
|
||||||
if (argc > i+1)
|
if (argc > i+1)
|
||||||
|
|
Loading…
Reference in a new issue