makerom: new cmd line arg

introduced "-i", works the same way as "-content", but is shorter and is
what ctr_makecia uses
This commit is contained in:
applestash
2014-09-17 11:30:19 +10:00
parent 1e8e4666b5
commit 744abbe852
+1 -1
View File
@@ -577,7 +577,7 @@ int SetArgument(int argc, int i, char *argv[], user_settings *set)
}
// Other Setting
else if(strcmp(argv[i],"-content") == 0){
else if(strcmp(argv[i],"-content") == 0 || strcmp(argv[i],"-i") == 0){
if(ParamNum != 1){
PrintArgReqParam(argv[i],1);
return USR_ARG_REQ_PARAM;