summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2011-12-12 23:25:32 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2011-12-12 23:25:32 -0600
commitb44918d1ed999df6ae7e767546028e7fc5f693b0 (patch)
tree03ce1fb5c23cfcd265db5e60d354f8df3da67049 /Source/Core/InputCommon
parent27bda2c054f38cdd8b6a04fe939ea006535ae532 (diff)
parent09d2301fed1f55989e937bcc45897426347e3b44 (diff)
Merge branch 'fix-real-gcpad-sticks'
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
index a995ae415a..82cfe2469e 100644
--- a/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
+++ b/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
@@ -18,7 +18,10 @@
#include "Thread.h"
-#define INPUT_DETECT_THRESHOLD 0.85f
+namespace
+{
+const float INPUT_DETECT_THRESHOLD = 0.55f;
+}
ControllerInterface g_controller_interface;