diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-05-04 09:00:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-04 09:00:41 -0700 |
| commit | dc4f8dd70b889edab34c9f31feefe55a1bbc2bdf (patch) | |
| tree | fe9d5b2f3efc3281362803f6ea61ade7643a6e5d /Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp | |
| parent | 5849604625310f986c0869e6512c0460fecc6b43 (diff) | |
| parent | 0e93c189023a0f046be915858ce35ea66fc8e5d2 (diff) | |
Merge pull request #5345 from JosJuice/consistent-controller-translation
Use _trans consistently for controllers
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp index aae0edf855..3467205ccf 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp @@ -26,8 +26,8 @@ Cursor::Cursor(const std::string& name_) : ControlGroup(name_, GroupType::Cursor for (auto& named_direction : named_directions) controls.emplace_back(std::make_unique<Input>(named_direction)); - controls.emplace_back(std::make_unique<Input>("Forward")); - controls.emplace_back(std::make_unique<Input>("Backward")); + controls.emplace_back(std::make_unique<Input>(_trans("Forward"))); + controls.emplace_back(std::make_unique<Input>(_trans("Backward"))); controls.emplace_back(std::make_unique<Input>(_trans("Hide"))); controls.emplace_back(std::make_unique<Input>(_trans("Recenter"))); |
