From 835797bf0f53ab624628da498e5ed15485541b6c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 19 Mar 2005 04:01:51 +0000 Subject: [PATCH] "MonkeyKeyboard" is for debugging only; the default input driver should be "null", or it's very confusing when porting. --- stepmania/src/arch/arch_default.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/stepmania/src/arch/arch_default.h b/stepmania/src/arch/arch_default.h index 4a574f1607..d2b2c0964e 100644 --- a/stepmania/src/arch/arch_default.h +++ b/stepmania/src/arch/arch_default.h @@ -12,17 +12,15 @@ #if defined (HAVE_XBOX) #define DEFAULT_INPUT_DRIVER_LIST "Xbox" #elif defined(HAVE_DIRECTX) -#define DEFAULT_INPUT_DRIVER_LIST "DirectInput,Pump,Para" + #define DEFAULT_INPUT_DRIVER_LIST "DirectInput,Pump,Para" #elif defined(HAVE_X11) // Prefer X11 over SDL #define DEFAULT_INPUT_DRIVER_LIST "X11,Linux_joystick" #elif defined(HAVE_SDL) #define DEFAULT_INPUT_DRIVER_LIST "SDL" +#elif defined(LINUX) + #define DEFAULT_INPUT_DRIVER_LIST "Linux_joystick,Linux_tty" #else - #if defined(LINUX) - #define DEFAULT_INPUT_DRIVER_LIST "Linux_joystick,Linux_tty" - #else - #define DEFAULT_INPUT_DRIVER_LIST "MonkeyKeyboard" - #endif + #define DEFAULT_INPUT_DRIVER_LIST "Null" #endif /* MovieTexture drivers */