fix warning from last commit

This commit is contained in:
CasualPokePlayer 2023-10-23 22:48:42 -07:00
parent cd4e58eaca
commit b88c7e6baa
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ namespace BizHawk.Common
{
for (var i = 0; i < len; i++)
{
current = CRC32Table[(current ^ ((byte*)buffer)[i]) & 0xFF] ^ (current >> 8);
current = CRC32Table![(current ^ ((byte*)buffer)[i]) & 0xFF] ^ (current >> 8);
}
return current;