Merge pull request #12578 from Dentomologist/dolphintool_fix_command_line_bzip_parsing

DolphinTool: Fix parsing of command line bzip2 flag
This commit is contained in:
JosJuice
2024-02-13 22:55:50 +01:00
committed by GitHub

View File

@ -102,7 +102,7 @@ int ConvertCommand(const std::vector<std::string>& args)
.action("store") .action("store")
.help("Compression method to use when converting to WIA/RVZ. Suggested value for RVZ: zstd " .help("Compression method to use when converting to WIA/RVZ. Suggested value for RVZ: zstd "
"[%choices]") "[%choices]")
.choices({"none", "zstd", "bzip", "lzma", "lzma2"}); .choices({"none", "zstd", "bzip2", "lzma", "lzma2"});
parser.add_option("-l", "--compression_level") parser.add_option("-l", "--compression_level")
.type("int") .type("int")