mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r5393) CodeChange : Little typo correction. Nothing spectacular. Only broke in MSVC
This commit is contained in:
parent
2b27073156
commit
2f6c73f098
2
win32.c
2
win32.c
@ -108,7 +108,7 @@ static void MakeCRCTable(uint32 *table) {
|
|||||||
for (i = 0; i != 256; i++) {
|
for (i = 0; i != 256; i++) {
|
||||||
crc = i;
|
crc = i;
|
||||||
for (j = 8; j != 0; j--) {
|
for (j = 8; j != 0; j--) {
|
||||||
src = (crc & 1 ? (crc >> 1) ^ poly : crc >> 1);
|
crc = (crc & 1 ? (crc >> 1) ^ poly : crc >> 1);
|
||||||
}
|
}
|
||||||
table[i] = crc;
|
table[i] = crc;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user