From 54c0eff6a6a0e21d94be303934feafc2b748a378 Mon Sep 17 00:00:00 2001 From: "Christian F. Coors" Date: Fri, 13 Jul 2018 21:02:19 +0200 Subject: [PATCH] Show command descriptions even if only -a is passed (#7780) --- src/openrct2/cmdline/RootCommands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/cmdline/RootCommands.cpp b/src/openrct2/cmdline/RootCommands.cpp index b692525a2b..ddeeabf0b4 100644 --- a/src/openrct2/cmdline/RootCommands.cpp +++ b/src/openrct2/cmdline/RootCommands.cpp @@ -181,7 +181,7 @@ exitcode_t CommandLine::HandleCommandDefault() } } - if (_help) + if (_help || _all) { CommandLine::PrintHelp(_all); result = EXITCODE_OK;