mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-05-11 15:02:07 +00:00
Added note about CRC algorithm compatibility
This commit is contained in:
parent
f35bbe0c3f
commit
9f30d4981e
|
@ -25,6 +25,9 @@
|
||||||
|
|
||||||
/* Public domain CRC implementation adapted from:
|
/* Public domain CRC implementation adapted from:
|
||||||
http://home.thep.lu.se/~bjorn/crc/crc32_simple.c
|
http://home.thep.lu.se/~bjorn/crc/crc32_simple.c
|
||||||
|
|
||||||
|
This algorithm is compatible with the 16-bit CRC described here:
|
||||||
|
https://www.lammertbies.nl/comm/info/crc-calculation
|
||||||
*/
|
*/
|
||||||
/* NOTE: DO NOT CHANGE THIS ALGORITHM
|
/* NOTE: DO NOT CHANGE THIS ALGORITHM
|
||||||
There is code that relies on this in the joystick code
|
There is code that relies on this in the joystick code
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
|
|
||||||
/* Public domain CRC implementation adapted from:
|
/* Public domain CRC implementation adapted from:
|
||||||
http://home.thep.lu.se/~bjorn/crc/crc32_simple.c
|
http://home.thep.lu.se/~bjorn/crc/crc32_simple.c
|
||||||
|
|
||||||
|
This algorithm is compatible with the 32-bit CRC described here:
|
||||||
|
https://www.lammertbies.nl/comm/info/crc-calculation
|
||||||
*/
|
*/
|
||||||
/* NOTE: DO NOT CHANGE THIS ALGORITHM
|
/* NOTE: DO NOT CHANGE THIS ALGORITHM
|
||||||
There is code that relies on this in the joystick code
|
There is code that relies on this in the joystick code
|
||||||
|
|
Loading…
Reference in a new issue