diff options
| author | 2026-03-25 11:56:11 +0100 | |
|---|---|---|
| committer | 2026-03-25 16:56:56 +0100 | |
| commit | 0bc667ed21969964962a5a449d911d8a9601e292 (patch) | |
| tree | 6a436d8bb8a1af310c9a80affd23d05fdb7cd307 /src/frontend | |
| parent | c13ed1630bd3410d4423248584d796eb3d207f38 (diff) | |
frontend/mame/clifront.cpp: add pattern explainations for -listbios
Diffstat (limited to 'src/frontend')
| -rw-r--r-- | src/frontend/mame/clifront.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp index 9db3ef61eca..e462de26c7b 100644 --- a/src/frontend/mame/clifront.cpp +++ b/src/frontend/mame/clifront.cpp @@ -670,7 +670,7 @@ void cli_frontend::listbios(const std::vector<std::string> &args) { if (firstbios) { - osd_printf_info("BIOS options for system %s (%s):\n", root.name(), root.shortname()); + osd_printf_info("BIOS options for system %s (%s -bios X):\n", root.name(), root.shortname()); firstbios = false; } osd_printf_info(" %-16s %s\n", bios.get_name(), bios.get_description()); @@ -692,7 +692,7 @@ void cli_frontend::listbios(const std::vector<std::string> &args) { if (firstcard) { - osd_printf_info("\n BIOS options for device %s (-%s %s):\n", card->name(), slot.device().tag() + 1, card->basetag()); + osd_printf_info("\n BIOS options for device %s (-%s %s,bios=X):\n", card->name(), slot.device().tag() + 1, card->basetag()); firstcard = false; } osd_printf_info(" %-16s %s\n", bios.get_name(), bios.get_description()); |
