Skip to content

Commit

Permalink
Enable the virtual joystick API by default
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 13, 2020
1 parent ef147d2 commit e6c640f
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 7 deletions.
5 changes: 3 additions & 2 deletions include/SDL_config_android.h
Expand Up @@ -136,8 +136,9 @@

/* Enable various input drivers */
#define SDL_JOYSTICK_ANDROID 1
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_HAPTIC_ANDROID 1
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_HAPTIC_ANDROID 1

/* Enable sensor driver */
#define SDL_SENSOR_ANDROID 1
Expand Down
3 changes: 2 additions & 1 deletion include/SDL_config_iphoneos.h
Expand Up @@ -137,8 +137,9 @@
#define SDL_HAPTIC_DUMMY 1

/* Enable MFi joystick support */
#define SDL_JOYSTICK_MFI 1
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_JOYSTICK_MFI 1
#define SDL_JOYSTICK_VIRTUAL 1

#ifdef __TVOS__
#define SDL_SENSOR_DUMMY 1
Expand Down
3 changes: 2 additions & 1 deletion include/SDL_config_macosx.h
Expand Up @@ -139,8 +139,9 @@
#define SDL_AUDIO_DRIVER_DUMMY 1

/* Enable various input drivers */
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_JOYSTICK_IOKIT 1
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_HAPTIC_IOKIT 1

/* Enable the dummy sensor driver */
Expand Down
1 change: 0 additions & 1 deletion include/SDL_config_os2.h
Expand Up @@ -31,7 +31,6 @@
#define SDL_POWER_DISABLED 1
#define SDL_JOYSTICK_DISABLED 1
#define SDL_HAPTIC_DISABLED 1
/*#undef SDL_JOYSTICK_HIDAPI */

#define SDL_SENSOR_DUMMY 1
#define SDL_VIDEO_DRIVER_DUMMY 1
Expand Down
1 change: 1 addition & 0 deletions include/SDL_config_pandora.h
Expand Up @@ -112,6 +112,7 @@
#define SDL_INPUT_LINUXEV 1
#define SDL_INPUT_TSLIB 1
#define SDL_JOYSTICK_LINUX 1
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_HAPTIC_LINUX 1

#define SDL_SENSOR_DUMMY 1
Expand Down
1 change: 1 addition & 0 deletions include/SDL_config_psp.h
Expand Up @@ -136,6 +136,7 @@

/* Enable the PSP joystick driver (src/joystick/psp/\*.c) */
#define SDL_JOYSTICK_PSP 1
#define SDL_JOYSTICK_VIRTUAL 1

/* Enable the dummy sensor driver */
#define SDL_SENSOR_DUMMY 1
Expand Down
5 changes: 3 additions & 2 deletions include/SDL_config_windows.h
Expand Up @@ -195,9 +195,10 @@ typedef unsigned int uintptr_t;

/* Enable various input drivers */
#define SDL_JOYSTICK_DINPUT 1
#define SDL_JOYSTICK_XINPUT 1
#define SDL_JOYSTICK_HIDAPI 1
#define SDL_JOYSTICK_RAWINPUT 1
#define SDL_JOYSTICK_RAWINPUT 1
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_JOYSTICK_XINPUT 1
#define SDL_HAPTIC_DINPUT 1
#define SDL_HAPTIC_XINPUT 1

Expand Down
1 change: 1 addition & 0 deletions include/SDL_config_winrt.h
Expand Up @@ -193,6 +193,7 @@ typedef unsigned int uintptr_t;
#define SDL_JOYSTICK_DISABLED 1
#define SDL_HAPTIC_DISABLED 1
#else
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_JOYSTICK_XINPUT 1
#define SDL_HAPTIC_XINPUT 1
#endif
Expand Down
1 change: 1 addition & 0 deletions include/SDL_config_wiz.h
Expand Up @@ -128,6 +128,7 @@
#define SDL_INPUT_LINUXEV 1
#define SDL_INPUT_TSLIB 1
#define SDL_JOYSTICK_LINUX 1
#define SDL_JOYSTICK_VIRTUAL 1
#define SDL_HAPTIC_LINUX 1

#define SDL_SENSOR_DUMMY 1
Expand Down

0 comments on commit e6c640f

Please sign in to comment.