mirror of https://github.com/encounter/SDL.git
Temporarily disable joystick GUID CRCs
This commit is contained in:
parent
3d516b841a
commit
9a01eac57d
|
@ -1984,7 +1984,11 @@ SDL_CreateJoystickGUID(Uint16 bus, Uint16 vendor, Uint16 product, Uint16 version
|
||||||
/* We only need 16 bits for each of these; space them out to fill 128. */
|
/* We only need 16 bits for each of these; space them out to fill 128. */
|
||||||
/* Byteswap so devices get same GUID on little/big endian platforms. */
|
/* Byteswap so devices get same GUID on little/big endian platforms. */
|
||||||
*guid16++ = SDL_SwapLE16(bus);
|
*guid16++ = SDL_SwapLE16(bus);
|
||||||
|
#if 1
|
||||||
|
*guid16++ = 0;
|
||||||
|
#else
|
||||||
*guid16++ = SDL_SwapLE16(SDL_crc16(0, name, SDL_strlen(name)));
|
*guid16++ = SDL_SwapLE16(SDL_crc16(0, name, SDL_strlen(name)));
|
||||||
|
#endif
|
||||||
|
|
||||||
if (vendor && product) {
|
if (vendor && product) {
|
||||||
*guid16++ = SDL_SwapLE16(vendor);
|
*guid16++ = SDL_SwapLE16(vendor);
|
||||||
|
|
Loading…
Reference in New Issue