mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
ControllerEmu: Use enum instead of bool for translatability
This commit is contained in:
@ -12,7 +12,7 @@ namespace ControllerEmu
|
||||
class Input : public Control
|
||||
{
|
||||
public:
|
||||
Input(bool translate, const std::string& name, const std::string& ui_name);
|
||||
Input(bool translate, const std::string& name);
|
||||
Input(Translatability translate, const std::string& name, const std::string& ui_name);
|
||||
Input(Translatability translate, const std::string& name);
|
||||
};
|
||||
} // namespace ControllerEmu
|
||||
|
Reference in New Issue
Block a user