Mac: Fixed off-by-one bug when plugging in a joystick (thanks, Konstantin!).

This commit is contained in:
Ryan C. Gordon
2015-09-13 11:29:45 -04:00
parent d2954adefa
commit daf3656d1e

View File

@@ -465,6 +465,7 @@ JoystickDeviceWasAddedCallback(void *ctx, IOReturn res, void *sender, IOHIDDevic
curdevice = curdevice->pNext;
}
curdevice->pNext = device;
++device_index; /* bump by one since we counted by pNext. */
}
/* !!! FIXME: why isn't there an SDL_PrivateJoyDeviceAdded()? */