diff options
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Control/Control.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/Control/Control.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp b/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp index 3f5d00d822..7ea3ec27d5 100644 --- a/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp +++ b/Source/Core/InputCommon/ControllerEmu/Control/Control.cpp @@ -9,14 +9,14 @@ namespace ControllerEmu { -Control::Control(std::unique_ptr<ControlReference> ref, const std::string& name_, +Control::Control(std::unique_ptr<ControlReference> ref, bool translate_, const std::string& name_, const std::string& ui_name_) - : control_ref(std::move(ref)), name(name_), ui_name(ui_name_) + : control_ref(std::move(ref)), translate(translate_), name(name_), ui_name(ui_name_) { } -Control::Control(std::unique_ptr<ControlReference> ref, const std::string& name_) - : Control(std::move(ref), name_, name_) +Control::Control(std::unique_ptr<ControlReference> ref, bool translate_, const std::string& name_) + : Control(std::move(ref), translate_, name_, name_) { } |
