mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-15 06:58:37 +02:00
ControllerEmu: Use enum instead of bool for translatability
This commit is contained in:
@ -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_)
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user