diff --git a/SabreTools.Library/DatFiles/DatFile.cs b/SabreTools.Library/DatFiles/DatFile.cs index a59664e8..8e7931a0 100644 --- a/SabreTools.Library/DatFiles/DatFile.cs +++ b/SabreTools.Library/DatFiles/DatFile.cs @@ -5051,8 +5051,8 @@ 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).SHA1)) - || (item.Type == ItemType.Disk && !String.IsNullOrWhiteSpace(((Disk)item).SHA1))) + else if ((item.Type == ItemType.Rom && !String.IsNullOrWhiteSpace(((Rom)item).CRC)) + || (item.Type == ItemType.Disk && !String.IsNullOrWhiteSpace(((Disk)item).CRC))) { crc.Add(key, item); }