Invert CRC to match most popular implementations.
This commit is contained in:
parent
8991b557ab
commit
9a6866d14a
@ -89,6 +89,6 @@ unsigned int UTIL_CRC32(const void *pdata, size_t data_length)
|
||||
crc = CRCTable[c] ^ (crc >> 8);
|
||||
}
|
||||
|
||||
return crc;
|
||||
return ~crc;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user