Skip to content

Commit f3cf019

Browse files
pcercueisezero
authored andcommitted
joystick: Add missing comma in joystick drivers list
Without this comma it is impossible to enable both the Vita and Dummy drivers at the same time. Signed-off-by: Paul Cercueil <[email protected]>
1 parent 98f2e38 commit f3cf019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/joystick/SDL_joystick.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static SDL_JoystickDriver *SDL_joystick_drivers[] = {
9696
&SDL_VIRTUAL_JoystickDriver,
9797
#endif
9898
#ifdef SDL_JOYSTICK_VITA
99-
&SDL_VITA_JoystickDriver
99+
&SDL_VITA_JoystickDriver,
100100
#endif
101101
#if defined(SDL_JOYSTICK_DUMMY) || defined(SDL_JOYSTICK_DISABLED)
102102
&SDL_DUMMY_JoystickDriver

0 commit comments

Comments
 (0)