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

View File

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