mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-27 11:01:25 -04:00
ControllerEmu: Use enum instead of bool for translatability
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
Output::Output(bool translate, const std::string& name_)
|
||||
: Control(std::make_unique<OutputReference>(), translate, name_)
|
||||
Output::Output(Translatability translate_, const std::string& name_)
|
||||
: Control(std::make_unique<OutputReference>(), translate_, name_)
|
||||
{
|
||||
}
|
||||
} // namespace ControllerEmu
|
||||
|
||||
Reference in New Issue
Block a user