Fixed code style

This commit is contained in:
Sam Lantinga 2018-08-20 21:18:56 -07:00
parent aeea6b9b1f
commit 6b3f11e2a3
1 changed files with 2 additions and 3 deletions

View File

@ -582,12 +582,11 @@ SDL_JoystickFromInstanceID(SDL_JoystickID joyid)
SDL_LockJoysticks();
for (joystick = SDL_joysticks; joystick; joystick = joystick->next) {
if (joystick->instance_id == joyid) {
SDL_UnlockJoysticks();
return joystick;
break;
}
}
SDL_UnlockJoysticks();
return NULL;
return joystick;
}
/*