Else-If causes some issues

This commit is contained in:
Matt Nadareski
2019-09-28 01:51:06 -07:00
parent c109aceb24
commit ca0d695470
12 changed files with 71 additions and 78 deletions

View File

@@ -13,7 +13,7 @@ namespace BurnOutSharp.ProtectionType
if ((position = fileContent.IndexOf("CD-Cops, ver. ")) > -1)
return "CD-Cops " + GetVersion(file, position);
else if (fileContent.Contains(".grand" + (char)0x00))
if (fileContent.Contains(".grand" + (char)0x00))
return "CD-Cops";
return null;