public: crclib: simplify CRC32_ProcessByte
This commit is contained in:
parent
c0c8119040
commit
93ee5b9446
1 changed files with 1 additions and 3 deletions
|
@ -104,9 +104,7 @@ void GAME_EXPORT CRC32_ProcessByte( dword *pulCRC, byte ch )
|
|||
{
|
||||
dword ulCrc = *pulCRC;
|
||||
|
||||
ulCrc ^= ch;
|
||||
ulCrc = crc32table[(byte)ulCrc] ^ (ulCrc >> 8);
|
||||
*pulCRC = ulCrc;
|
||||
*pulCRC = crc32table[((byte)ulCrc ^ ch)] ^ (ulCrc >> 8);
|
||||
}
|
||||
|
||||
void GAME_EXPORT CRC32_ProcessBuffer( dword *pulCRC, const void *pBuffer, int nBuffer )
|
||||
|
|
Loading…
Add table
Reference in a new issue