summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Control/Control.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/Control/Control.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp b/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp
index 20ae3a3cda..dbf12b4570 100644
--- a/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp
@@ -10,14 +10,15 @@
namespace ControllerEmu
{
Control::Control(std::unique_ptr<ControlReference> ref, Translatability translate_,
- const std::string& name_, const std::string& ui_name_)
- : control_ref(std::move(ref)), translate(translate_), name(name_), ui_name(ui_name_)
+ std::string name_, std::string ui_name_)
+ : control_ref(std::move(ref)), translate(translate_), name(std::move(name_)),
+ ui_name(std::move(ui_name_))
{
}
Control::Control(std::unique_ptr<ControlReference> ref, Translatability translate_,
- const std::string& name_)
- : Control(std::move(ref), translate_, name_, name_)
+ std::string name_)
+ : control_ref(std::move(ref)), translate(translate_), name(name_), ui_name(std::move(name_))
{
}