relaxed -f argument

-f cxi and -f cfa can be used, but has same effect as -f ncch
This commit is contained in:
applestash
2014-08-30 01:41:42 +10:00
parent 7f8c1f92a4
commit 9828b8b061
+1 -1
View File
@@ -140,7 +140,7 @@ int SetArgument(int argc, int i, char *argv[], user_settings *set)
PrintArgReqParam(argv[i],1);
return USR_ARG_REQ_PARAM;
}
if(strcasecmp(argv[i+1],"ncch") == 0)
if(strcasecmp(argv[i+1],"ncch") == 0 || strcasecmp(argv[i+1],"cxi") == 0 || strcasecmp(argv[i+1],"cfa") == 0)
set->common.outFormat = NCCH;
else if(strcasecmp(argv[i+1],"cci") == 0)
set->common.outFormat = CCI;