summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2023-05-29 16:31:19 -0700
committerDentomologist <dentomologist@gmail.com>2023-06-12 18:11:04 -0700
commit527f8e783c915886985ae38b580d33744435de58 (patch)
treec20322d6ab1de267610f128352e76f15cf80a53b /Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp
parentc8559a79332aa81e4060389d82cd8df885147972 (diff)
ControllerEmu: Convert Translatability to enum class
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp
index 708831a4c3..c764b0214b 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp
@@ -18,8 +18,8 @@ namespace ControllerEmu
Slider::Slider(const std::string& name_, const std::string& ui_name_)
: ControlGroup(name_, ui_name_, GroupType::Slider)
{
- AddInput(Translate, _trans("Left"));
- AddInput(Translate, _trans("Right"));
+ AddInput(Translatability::Translate, _trans("Left"));
+ AddInput(Translatability::Translate, _trans("Right"));
AddDeadzoneSetting(&m_deadzone_setting, 50);
}