This commit is contained in:
King_DuckZ 2020-05-05 15:51:06 +02:00
parent 4afee05a12
commit 157d87e31f

View file

@ -1907,7 +1907,7 @@ void CUnAlz::DecryptingData(int nSize, BYTE* data)
////////////////////////////////////////////////////////////////////////////////////////////////////
UINT32 CUnAlz::CRC32(UINT32 l, BYTE c)
{
const unsigned long *CRC_TABLE = get_crc_table();
const z_crc_t *CRC_TABLE = get_crc_table();
return CRC_TABLE[(l ^ c) & 0xff] ^ (l >> 8);
}