Browse Source

Adding GetGamepadMapping to Vita Joystick driver

Francisco Javier Trujillo Mata 2 years ago
parent
commit
c3a5e4aa7b
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/joystick/vita/SDL_sysjoystick.c

+ 7 - 0
src/joystick/vita/SDL_sysjoystick.c

@@ -398,6 +398,12 @@ VITA_JoystickSetSensorsEnabled(SDL_Joystick *joystick, SDL_bool enabled)
     return SDL_Unsupported();
 }
 
+static SDL_bool
+VITA_JoystickGetGamepadMapping(int device_index, SDL_GamepadMapping *out)
+{
+    return SDL_FALSE;
+}
+
 SDL_JoystickDriver SDL_VITA_JoystickDriver =
 {
     VITA_JoystickInit,
@@ -423,6 +429,7 @@ SDL_JoystickDriver SDL_VITA_JoystickDriver =
     VITA_JoystickUpdate,
     VITA_JoystickClose,
     VITA_JoystickQuit,
+    VITA_JoystickGetGamepadMapping,
 };
 
 #endif /* SDL_JOYSTICK_VITA */