diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2011-12-12 23:25:32 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2011-12-12 23:25:32 -0600 |
| commit | b44918d1ed999df6ae7e767546028e7fc5f693b0 (patch) | |
| tree | 03ce1fb5c23cfcd265db5e60d354f8df3da67049 /Source/Core/InputCommon | |
| parent | 27bda2c054f38cdd8b6a04fe939ea006535ae532 (diff) | |
| parent | 09d2301fed1f55989e937bcc45897426347e3b44 (diff) | |
Merge branch 'fix-real-gcpad-sticks'
Diffstat (limited to 'Source/Core/InputCommon')
| -rw-r--r-- | Source/Core/InputCommon/Src/ControllerInterface/ControllerInterface.cpp | 5 |
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; |
