summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2020-08-01 00:17:23 +0100
committerTillmann Karras <tilkax@gmail.com>2020-08-08 21:45:03 +0100
commitd2b06f47867449f112b7a782cdb626ab0f175cee (patch)
treea37a472d347193f7caa2b49023a44da5beed29c0 /Source/Core/InputCommon/ControllerEmu/StickGate.cpp
parenta161e58591cadc504c9751a563f4c065ad0f435a (diff)
Fix various -Wshadow warnings
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/StickGate.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/StickGate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
index 5e2acb3f5b..1c689edd50 100644
--- a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
@@ -109,8 +109,8 @@ std::optional<u32> SquareStickGate::GetIdealCalibrationSampleCount() const
return 8;
}
-ReshapableInput::ReshapableInput(std::string name, std::string ui_name, GroupType type)
- : ControlGroup(std::move(name), std::move(ui_name), type)
+ReshapableInput::ReshapableInput(std::string name_, std::string ui_name_, GroupType type_)
+ : ControlGroup(std::move(name_), std::move(ui_name_), type_)
{
AddDeadzoneSetting(&m_deadzone_setting, 50);
}