summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/Control/Input.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2018-04-10 17:22:30 +0200
committerJosJuice <josjuice@gmail.com>2018-04-13 13:04:26 +0200
commit7ed28297b237779f0e4b6d7045cd27e10a8cfb0e (patch)
treebca5d06f1fddf59b5e8b9f38af7f745b40f3beb9 /Source/Core/InputCommon/ControllerEmu/Control/Input.cpp
parent3f13dbe0878523b65d158efddc3eff37d59ca3a2 (diff)
ControllerEmu: Use enum instead of bool for translatability
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Control/Input.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/Control/Input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Control/Input.cpp b/Source/Core/InputCommon/ControllerEmu/Control/Input.cpp
index ca872b5cbd..69f817705e 100644
--- a/Source/Core/InputCommon/ControllerEmu/Control/Input.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/Control/Input.cpp
@@ -10,12 +10,12 @@
namespace ControllerEmu
{
-Input::Input(bool translate_, const std::string& name_, const std::string& ui_name_)
+Input::Input(Translatability translate_, const std::string& name_, const std::string& ui_name_)
: Control(std::make_unique<InputReference>(), translate_, name_, ui_name_)
{
}
-Input::Input(bool translate_, const std::string& name_)
+Input::Input(Translatability translate_, const std::string& name_)
: Control(std::make_unique<InputReference>(), translate_, name_)
{
}