diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2011-08-31 20:46:04 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2011-08-31 20:46:04 -0500 |
| commit | 931a31decae90efdd18b763030c9e07630339a47 (patch) | |
| tree | 0407947431c65f8359a10813651e5a01b31de798 /Source/Core/InputCommon | |
| parent | c0dd84cf7d0410d5f247f8641208f43fabe8c420 (diff) | |
Untested attempt to fix real gcpad sticks not being detected by the input configuration dialogs.
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..e6f2f508d2 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.65f; +} ControllerInterface g_controller_interface; |
