Commit f3cf019ecb4eaf05808f7684126b5d57d9e2daf2

Paul Cercueil 2021-06-12T13:25:34

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 <paul@crapouillou.net>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/joystick/SDL_joystick.c b/src/joystick/SDL_joystick.c
index 9281473..414fe4f 100644
--- a/src/joystick/SDL_joystick.c
+++ b/src/joystick/SDL_joystick.c
@@ -96,7 +96,7 @@ static SDL_JoystickDriver *SDL_joystick_drivers[] = {
     &SDL_VIRTUAL_JoystickDriver,
 #endif
 #ifdef SDL_JOYSTICK_VITA
-    &SDL_VITA_JoystickDriver
+    &SDL_VITA_JoystickDriver,
 #endif
 #if defined(SDL_JOYSTICK_DUMMY) || defined(SDL_JOYSTICK_DISABLED)
     &SDL_DUMMY_JoystickDriver