summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-11-12 22:35:14 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-11-12 22:35:26 +0100
commit748f6ed903976e40b96fea290ea5fe430b8a4788 (patch)
tree63fcfa489bb2a5f96a5477cde76718bbf786c02a
parentc188d549658934ae30de9516e0975e792d058f00 (diff)
clifront.cpp: 'a brief list of options' is a lie, make it more truthful.
-rw-r--r--src/frontend/mame/clifront.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp
index 581d6edd62f..f2dbf4e1c55 100644
--- a/src/frontend/mame/clifront.cpp
+++ b/src/frontend/mame/clifront.cpp
@@ -1724,10 +1724,10 @@ void cli_frontend::display_help(const char *exename)
"other media which run on that hardware are also required.\n\n");
osd_printf_info("Usage: %s [machine] [media] [software] [options]",exename);
osd_printf_info("\n\n"
- " %s -showusage for a brief list of options\n"
- " %s -showconfig for a list of configuration options\n"
+ " %s -showusage for a list of options\n"
+ " %s -showconfig to show your current %s.ini\n"
" %s -listmedia for a full list of supported media\n"
" %s -createconfig to create a %s.ini\n\n"
"For usage instructions, please consult the files config.txt and windows.txt.\n",exename,
- exename,exename,exename,emulator_info::get_configname());
+ exename,emulator_info::get_configname(),exename,exename,emulator_info::get_configname());
}