Skip to content

Commit

Permalink
Added some command line argument clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
haekb committed Dec 27, 2019
1 parent 2167c32 commit 528d247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lpsdecoder/lpsdecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ int main(int argc, char* argv[], char* envp[])
options.add_options()
("h,help", "Help", cxxopts::value(showHelp))
("f,file", "LPS Filename", cxxopts::value(filename))
("e,extract-only", "Extract Only (Don't convert to wav)", cxxopts::value(extractOnly))
("e,extract-only", "Extract Only (Don't convert to wav)", cxxopts::value(extractOnly)->default_value("false"))
("c,clean-up-ss2", "Clean up SS2 files after converting to wav", cxxopts::value<bool>(cleanUpSS2)->default_value("true"))
("v,path-to-vgm-stream", "Path to VGMStream", cxxopts::value(pathToVGMStream))
("v,path-to-vgm-stream", "Path to VGMStream", cxxopts::value(pathToVGMStream)->default_value(pathToVGMStream))
;

auto result = options.parse(argc, argv);
Expand Down

0 comments on commit 528d247

Please sign in to comment.