diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2013-01-19 19:16:01 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2013-01-19 19:20:04 -0600 |
| commit | 6ec95d30af4ce33090d896414107844bea18c612 (patch) | |
| tree | b66f1f9a47d324d278be1d95e01900886282a0ec /Source/Core/InputCommon/Src/ControllerEmu.cpp | |
| parent | 7f8341825b559277a1031c076b1a89604ccc94d8 (diff) | |
Allow emulated wiimote to be tilted 180 degrees in each direction. (was 90)
Fixes issue 3492.
Diffstat (limited to 'Source/Core/InputCommon/Src/ControllerEmu.cpp')
| -rw-r--r-- | Source/Core/InputCommon/Src/ControllerEmu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerEmu.cpp b/Source/Core/InputCommon/Src/ControllerEmu.cpp index 9065888d7d..2e6ad10617 100644 --- a/Source/Core/InputCommon/Src/ControllerEmu.cpp +++ b/Source/Core/InputCommon/Src/ControllerEmu.cpp @@ -295,6 +295,7 @@ ControllerEmu::Tilt::Tilt(const char* const _name) settings.push_back(new Setting(_trans("Dead Zone"), 0, 0, 50)); settings.push_back(new Setting(_trans("Circle Stick"), 0)); + settings.push_back(new Setting(_trans("Angle"), 0.9f, 0, 180)); } ControllerEmu::Cursor::Cursor(const char* const _name) |
