Rename "CRC" to "CRC32" where appropriate

This commit is contained in:
Matt Nadareski
2026-04-06 07:44:19 -04:00
parent 6a7d6e16b7
commit e2b2f4d8a5
61 changed files with 375 additions and 373 deletions

View File

@@ -1799,12 +1799,13 @@ namespace SabreTools.Metadata.Filter
case "comment":
checkValue = obj.Comment;
return true;
case "crc":
checkValue = obj.CRC;
return true;
case "crc16":
checkValue = obj.CRC16;
return true;
case "crc":
case "crc32":
checkValue = obj.CRC32;
return true;
case "crc64":
checkValue = obj.CRC64;
return true;