summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2011-12-12 23:24:10 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2011-12-12 23:24:10 -0600
commit09d2301fed1f55989e937bcc45897426347e3b44 (patch)
tree1d103f9064e92fd9a9a03257a48890afb3a425a9 /Source/Core/InputCommon
parent931a31decae90efdd18b763030c9e07630339a47 (diff)
detect input at 55% to catch silly c-stick range
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
index e6f2f508d2..82cfe2469e 100644
--- a/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
+++ b/Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp
@@ -20,7 +20,7 @@
namespace
{
-const float INPUT_DETECT_THRESHOLD = 0.65f;
+const float INPUT_DETECT_THRESHOLD = 0.55f;
}
ControllerInterface g_controller_interface;