mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
InputCommon: Clean up creation of inputs.
This commit is contained in:
@ -10,8 +10,8 @@
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
Output::Output(Translatability translate_, const std::string& name_)
|
||||
: Control(std::make_unique<OutputReference>(), translate_, name_)
|
||||
Output::Output(Translatability translate_, std::string name_)
|
||||
: Control(std::make_unique<OutputReference>(), translate_, std::move(name_))
|
||||
{
|
||||
}
|
||||
} // namespace ControllerEmu
|
||||
|
Reference in New Issue
Block a user