summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu.cpp b/Source/Core/InputCommon/ControllerEmu.cpp
index 6e2bf8aa73..e5822a0e9e 100644
--- a/Source/Core/InputCommon/ControllerEmu.cpp
+++ b/Source/Core/InputCommon/ControllerEmu.cpp
@@ -144,7 +144,11 @@ ControllerEmu::AnalogStick::AnalogStick(const char* const _name) : ControlGroup(
controls.emplace_back(new Input(_trans("Modifier")));
- settings.emplace_back(new Setting(_trans("Radius"), 0.7f, 0, 100));
+ // Default to 100 radius for everything but gcpad.
+ if (name == "Stick" || name == "Left Stick" || name == "Right Stick")
+ settings.emplace_back(new Setting(_trans("Radius"), 1.0f, 0, 100));
+ else
+ settings.emplace_back(new Setting(_trans("Radius"), 0.7f, 0, 100));
settings.emplace_back(new Setting(_trans("Dead Zone"), 0, 0, 50));
}