From 08945f0b1cb64f09e6f441d81784a59b87b95290 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Sat, 30 Oct 2021 17:15:40 -0700 Subject: [PATCH] remove hide-seekbar double letter flag --- Source/Core/UICommon/CommandLineParse.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/UICommon/CommandLineParse.cpp b/Source/Core/UICommon/CommandLineParse.cpp index c7043ba4da..4498445d9d 100644 --- a/Source/Core/UICommon/CommandLineParse.cpp +++ b/Source/Core/UICommon/CommandLineParse.cpp @@ -124,10 +124,10 @@ std::unique_ptr CreateParser(ParserOptions options) .metavar("") .type("string") .help("Path to Slippi replay config file (default: Slippi/playback.txt)"); -#endif - parser->add_option("-hs", "--hide-seekbar") + parser->add_option("--hide-seekbar") .action("store_true") .help("Disable and hide seekbar during playback"); +#endif return parser; }