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; }