shithub: psxe

Download patch

ref: 848efd5bac21e0c663204d56a3e8302078c2cc18
parent: f1ba2128cc5c64d01ee2e9edd680c105e87312bc
author: allkern <lisandroaalarcon@gmail.com>
date: Thu Jun 22 19:35:39 EDT 2023

Separate help and version from emulator config

--- a/frontend/config.c
+++ b/frontend/config.c
@@ -125,6 +125,7 @@
         OPT_BOOLEAN (0  , "help-model"   , &help_model   , "Display available console models", NULL, 0, 0),
         OPT_BOOLEAN (0  , "help-region"  , &help_region  , "Display available region options", NULL, 0, 0),
         OPT_BOOLEAN ('v', "version"      , &version      , "Display version and build information", NULL, 0, 0),
+        OPT_GROUP("Basic options"),
         OPT_BOOLEAN ('a', "use-args"     , &use_args     , "Ignore settings file, use CLI args instead", NULL, 0, 0),
         OPT_STRING  ('S', "settings-file", &settings_path, "Specify settings file path", NULL, 0, 0),
         OPT_BOOLEAN ('b', "bios"         , &bios         , "Use this BIOS file (ignores -B, -M)", NULL, 0, 0),
--