From c252b0f4df07c7282ddaa26593606634b02d7e3f Mon Sep 17 00:00:00 2001 From: mattmenke Date: Sat, 26 Sep 2009 18:21:57 +0000 Subject: [PATCH] LilyPad: Default deadzone increased. Note that will only apply to new bindings, or ones from inis made before I added deadzone support. Hope it's high enough for most cases, but not high enough to break anything... git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1920 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/LilyPad/InputManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/LilyPad/InputManager.h b/plugins/LilyPad/InputManager.h index 0080472325..bb4d440c32 100644 --- a/plugins/LilyPad/InputManager.h +++ b/plugins/LilyPad/InputManager.h @@ -9,7 +9,7 @@ #define BASE_SENSITIVITY (1<<16) #define FULLY_DOWN (1<<16) -#define DEFAULT_DEADZONE (BASE_SENSITIVITY/0x10) +#define DEFAULT_DEADZONE (BASE_SENSITIVITY * 201/1000) /* Idea is for this file and the associated cpp file to be Windows independent. * Still more effort than it's worth to port to Linux, however.