From 0319041ffb2e628c7c7f81e8e37484428de2e8a4 Mon Sep 17 00:00:00 2001 From: hizzlekizzle Date: Sat, 10 Jun 2017 15:39:59 -0500 Subject: [PATCH] change --help text for --log-file option --log-file seems to be one of the few CLI switches that doesn't accept both space and =. Instead, it will fail to launch if you use the '=', which is the suggested syntax in the --help text. --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 5287db4483..5d87d3c122 100644 --- a/retroarch.c +++ b/retroarch.c @@ -434,7 +434,7 @@ static void retroarch_print_help(const char *arg0) puts(" -h, --help Show this help message."); puts(" -v, --verbose Verbose logging."); - puts(" --log-file=FILE Log messages to FILE."); + puts(" --log-file FILE Log messages to FILE."); puts(" --version Show version."); puts(" --features Prints available features compiled into " "program.");