mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Respect APPBASENAME when showing command line help
git-svn-id: https://svn.eduke32.com/eduke32@6291 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6bbfbb5e1d
commit
d37c26cc2a
1 changed files with 3 additions and 3 deletions
|
@ -43,8 +43,8 @@ int32_t g_fakeMultiMode = 0;
|
||||||
|
|
||||||
void G_ShowParameterHelp(void)
|
void G_ShowParameterHelp(void)
|
||||||
{
|
{
|
||||||
const char *s = "Usage: eduke32 [files] [options]\n"
|
const char *s = "Usage: " APPBASENAME " [files] [options]\n"
|
||||||
"Example: eduke32 -usecwd -cfg myconfig.cfg -map nukeland.map\n\n"
|
"Example: " APPBASENAME " -usecwd -cfg myconfig.cfg -map nukeland.map\n\n"
|
||||||
"Files can be of type [grp|zip|map|con|def]\n"
|
"Files can be of type [grp|zip|map|con|def]\n"
|
||||||
"\n"
|
"\n"
|
||||||
"-cfg [file.cfg]\tUse an alternate configuration file\n"
|
"-cfg [file.cfg]\tUse an alternate configuration file\n"
|
||||||
|
@ -95,7 +95,7 @@ void G_ShowParameterHelp(void)
|
||||||
|
|
||||||
void G_ShowDebugHelp(void)
|
void G_ShowDebugHelp(void)
|
||||||
{
|
{
|
||||||
const char *s = "Usage: eduke32 [files] [options]\n"
|
const char *s = "Usage: " APPBASENAME " [files] [options]\n"
|
||||||
"\n"
|
"\n"
|
||||||
#if 0
|
#if 0
|
||||||
"-a\t\tUse fake player AI (fake multiplayer only)\n"
|
"-a\t\tUse fake player AI (fake multiplayer only)\n"
|
||||||
|
|
Loading…
Reference in a new issue