mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
WiimoteEmu/DolphinQt: Rename "IR" to "Point" and eliminate redundant Forward/Backward mappings.
This commit is contained in:
@ -15,14 +15,13 @@
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
ControlGroup::ControlGroup(const std::string& name_, const GroupType type_)
|
||||
: name(name_), ui_name(name_), type(type_)
|
||||
ControlGroup::ControlGroup(std::string name_, const GroupType type_)
|
||||
: name(name_), ui_name(std::move(name_)), type(type_)
|
||||
{
|
||||
}
|
||||
|
||||
ControlGroup::ControlGroup(const std::string& name_, const std::string& ui_name_,
|
||||
const GroupType type_)
|
||||
: name(name_), ui_name(ui_name_), type(type_)
|
||||
ControlGroup::ControlGroup(std::string name_, std::string ui_name_, const GroupType type_)
|
||||
: name(std::move(name_)), ui_name(std::move(ui_name_)), type(type_)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user