Fix accidental edit of CRCTable

This commit is contained in:
Blizzard Finnegan 2023-07-14 16:14:45 -04:00
parent ea907b4133
commit b2bdb1b427
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E

View file

@ -141,7 +141,7 @@ CRC is calculated using pregenerated table, plus the following function:
static const uint16 CRCTable[ 256 ] = {
0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
0x1081, 0x0108, 0x3393, 0x221a, 0x56a6, 0x472c, 0x75b7, 0x643e,
0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,