diff --git a/SabreTools.Library/DatFiles/DatFile.cs b/SabreTools.Library/DatFiles/DatFile.cs index 8e7931a0..cebbaae8 100644 --- a/SabreTools.Library/DatFiles/DatFile.cs +++ b/SabreTools.Library/DatFiles/DatFile.cs @@ -5051,8 +5051,7 @@ namespace SabreTools.Library.DatFiles md5.Add(key, item); } // If the file has no MD5 but a CRC - else if ((item.Type == ItemType.Rom && !String.IsNullOrWhiteSpace(((Rom)item).CRC)) - || (item.Type == ItemType.Disk && !String.IsNullOrWhiteSpace(((Disk)item).CRC))) + else if ((item.Type == ItemType.Rom && !String.IsNullOrWhiteSpace(((Rom)item).CRC))) { crc.Add(key, item); }