1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-02 07:20:34 +00:00

Make udev joypad driver default over linuxraw.

Udev supports rumble and should be the default.
This commit is contained in:
Themaister 2013-12-05 10:09:41 +01:00
parent e7ed579a9a
commit 61d66b7f19

@ -48,12 +48,12 @@ static const rarch_joypad_driver_t *joypad_drivers[] = {
#ifdef HAVE_DINPUT #ifdef HAVE_DINPUT
&dinput_joypad, &dinput_joypad,
#endif #endif
#if defined(__linux) && !defined(ANDROID)
&linuxraw_joypad,
#endif
#ifdef HAVE_UDEV #ifdef HAVE_UDEV
&udev_joypad, &udev_joypad,
#endif #endif
#if defined(__linux) && !defined(ANDROID)
&linuxraw_joypad,
#endif
#ifdef HAVE_SDL #ifdef HAVE_SDL
&sdl_joypad, &sdl_joypad,
#endif #endif