From b764ed46824759cac2e3daebbfb869b5c45dc8cb Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 23 Feb 2025 18:02:18 +1000 Subject: [PATCH] DDGoController: Fix incorrect translation context --- src/core/ddgo_controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/ddgo_controller.cpp b/src/core/ddgo_controller.cpp index 2856353eb..dc9e6ea24 100644 --- a/src/core/ddgo_controller.cpp +++ b/src/core/ddgo_controller.cpp @@ -337,12 +337,12 @@ static const Controller::ControllerBindingInfo s_binding_info[] = { static const SettingInfo s_settings[] = { {SettingInfo::Type::Float, "AnalogDeadzone", TRANSLATE_NOOP("DDGoController", "Analog Deadzone"), - TRANSLATE_NOOP("AnalogController", + TRANSLATE_NOOP("DDGoController", "Sets the analog stick deadzone, i.e. the fraction of the stick movement which will be ignored."), "0.00f", "0.00f", "1.00f", "0.01f", "%.0f%%", nullptr, 100.0f}, {SettingInfo::Type::Float, "AnalogSensitivity", TRANSLATE_NOOP("DDGoController", "Analog Sensitivity"), TRANSLATE_NOOP( - "AnalogController", + "DDGoController", "Sets the analog stick axis scaling factor. A value between 130% and 140% is recommended when using recent " "controllers, e.g. DualShock 4, Xbox One Controller."), "1.33f", "0.01f", "2.00f", "0.01f", "%.0f%%", nullptr, 100.0f},