Some Cleanups

This commit is contained in:
hondacrx
2021-06-07 18:06:16 -04:00
parent cb7640e3c6
commit 302a1f293c
53 changed files with 382 additions and 477 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ namespace Game
var hash = sha.ComputeHash(data, 0, (int)length);
uint checkSum = 0;
for (byte i = 0; i < 5; ++i)
checkSum = checkSum ^ BitConverter.ToUInt32(hash, i * 4);
checkSum ^= BitConverter.ToUInt32(hash, i * 4);
return checkSum;
}