Fixed missing return statement

This commit is contained in:
Sam Lantinga 2021-07-24 19:21:29 -07:00
parent 89bdc6ba1d
commit cc19b13bc3

View File

@ -1003,6 +1003,7 @@ PrepareJoystickHwdata(SDL_Joystick *joystick, SDL_joylist_item *item)
/* Get the number of buttons and axes on the joystick */
ConfigJoystick(joystick, fd);
}
return 0;
}