Skip to content

Commit

Permalink
hca2wav now correctly supports key modifier in commandline (@esterTion)
Browse files Browse the repository at this point in the history
  • Loading branch information
hozuki committed Apr 24, 2019
1 parent 4871906 commit f9f2ef0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/apps/hca2wav/hca2wav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ int main(int argc, const char *argv[]) {
argv0 = const_cast<char **>(argv);
#endif

if (!(argc0 == 3 || argc0 == 5)) {
if (!(argc0 == 3 || // exe in out
argc0 == 5 || // exe in out k1 k2
argc == 6 // exe in out k1 k2 km
)) {
PrintHelp();
return 0;
}
Expand Down

0 comments on commit f9f2ef0

Please sign in to comment.