Have to make everything similar for inputs and flags

This commit is contained in:
Matt Nadareski
2016-05-04 15:09:31 -07:00
parent 231b576490
commit a074dd001c
3 changed files with 29 additions and 29 deletions

View File

@@ -84,15 +84,15 @@ namespace SabreTools
break;
default:
string temparg = arg.Replace("\"", "");
if (temparg.StartsWith("com="))
if (temparg.StartsWith("-com="))
{
currentAllMerged = temparg.Split('=')[1];
}
else if (temparg.StartsWith("fix="))
else if (temparg.StartsWith("-fix="))
{
currentMissingMerged = temparg.Split('=')[1];
}
else if (temparg.StartsWith("new="))
else if (temparg.StartsWith("-new="))
{
currentNewMerged = temparg.Split('=')[1];
}