mirror of
https://github.com/yawut/SDL.git
synced 2026-07-19 01:11:38 -05:00
haiku: Fixed crash on quit if max number of joysticks was connected.
This commit is contained in:
parent
7e34eb4c67
commit
ea5a592da1
|
|
@ -228,12 +228,12 @@ extern "C"
|
|||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; SDL_joyport[i]; ++i) {
|
||||
for (i = 0; i < SDL_SYS_numjoysticks; ++i) {
|
||||
SDL_free(SDL_joyport[i]);
|
||||
}
|
||||
SDL_joyport[0] = NULL;
|
||||
|
||||
for (i = 0; SDL_joyname[i]; ++i) {
|
||||
for (i = 0; i < SDL_SYS_numjoysticks; ++i) {
|
||||
SDL_free(SDL_joyname[i]);
|
||||
}
|
||||
SDL_joyname[0] = NULL;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user