diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-09-10 12:32:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-10 12:32:43 +0200 |
| commit | 9d169449a7898cefab29a5e033f82560cfcdef5e (patch) | |
| tree | ba6a987402ca29bcb029488074d5246ebafb609b /Source/Core | |
| parent | c8f3e175cebc6f49ba600b1232ac33bf682bb3d6 (diff) | |
| parent | f8b89b7b1a17bd923795f0ef37c728ecd2380478 (diff) | |
Merge pull request #6043 from Ebola16/master
Update -d argument help message
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/UICommon/CommandLineParse.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/UICommon/CommandLineParse.cpp b/Source/Core/UICommon/CommandLineParse.cpp index 0620277853..c5db8b57e0 100644 --- a/Source/Core/UICommon/CommandLineParse.cpp +++ b/Source/Core/UICommon/CommandLineParse.cpp @@ -81,7 +81,9 @@ std::unique_ptr<optparse::OptionParser> CreateParser(ParserOptions options) if (options == ParserOptions::IncludeGUIOptions) { - parser->add_option("-d", "--debugger").action("store_true").help("Opens the debuger"); + parser->add_option("-d", "--debugger") + .action("store_true") + .help("Show the debugger pane and additional View menu options"); parser->add_option("-l", "--logger").action("store_true").help("Opens the logger"); parser->add_option("-b", "--batch").action("store_true").help("Exit Dolphin with emulation"); parser->add_option("-c", "--confirm").action("store_true").help("Set Confirm on Stop"); |
