summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2017-02-09 05:26:41 -0500
committerGitHub <noreply@github.com>2017-02-09 05:26:41 -0500
commit1385a012d94bbec76bc8b2922467c715b63f0158 (patch)
tree1988513f7a0b2e86b3c3060ffbe921a46e1c1684 /Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp
parent73382852b7636642d6614d7b7919ee6173dfe71f (diff)
parent56531a0b7f76ec72da5019fef86c6ae2b3addac0 (diff)
Merge pull request #4871 from lioncash/radius
ControllerEmu: Fix incorrect default radius being set in AnalogStick
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp
index 4421353aa6..62501494e6 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp
@@ -172,7 +172,7 @@ void ControllerEmu::ControlGroup::SetControlExpression(int index, const std::str
}
ControllerEmu::AnalogStick::AnalogStick(const char* const _name, ControlState default_radius)
- : AnalogStick(_name, _name, GROUP_TYPE_STICK)
+ : AnalogStick(_name, _name, default_radius)
{
}