From 61d66b7f1967eeeb2f3f23c579ff2ba347ef64a9 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 5 Dec 2013 10:09:41 +0100 Subject: [PATCH] Make udev joypad driver default over linuxraw. Udev supports rumble and should be the default. --- input/input_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/input/input_common.c b/input/input_common.c index 805392ba97..7e55d5c7a9 100644 --- a/input/input_common.c +++ b/input/input_common.c @@ -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