mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-04-03 12:32:45 +02:00
Fixed code style
This commit is contained in:
parent
aeea6b9b1f
commit
6b3f11e2a3
@ -582,12 +582,11 @@ SDL_JoystickFromInstanceID(SDL_JoystickID joyid)
|
|||||||
SDL_LockJoysticks();
|
SDL_LockJoysticks();
|
||||||
for (joystick = SDL_joysticks; joystick; joystick = joystick->next) {
|
for (joystick = SDL_joysticks; joystick; joystick = joystick->next) {
|
||||||
if (joystick->instance_id == joyid) {
|
if (joystick->instance_id == joyid) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
SDL_UnlockJoysticks();
|
SDL_UnlockJoysticks();
|
||||||
return joystick;
|
return joystick;
|
||||||
}
|
|
||||||
}
|
|
||||||
SDL_UnlockJoysticks();
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user