From d2b06f47867449f112b7a782cdb626ab0f175cee Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 1 Aug 2020 00:17:23 +0100 Subject: Fix various -Wshadow warnings --- Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp') diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp index be90bf532c..25df9772da 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp @@ -16,9 +16,9 @@ namespace ControllerEmu { -IMUCursor::IMUCursor(std::string name, std::string ui_name) +IMUCursor::IMUCursor(std::string name_, std::string ui_name_) : ControlGroup( - std::move(name), std::move(ui_name), GroupType::IMUCursor, + std::move(name_), std::move(ui_name_), GroupType::IMUCursor, #ifdef ANDROID // Enabling this on Android devices which have an accelerometer and gyroscope prevents // touch controls from being used for pointing, and touch controls generally work better -- cgit v1.2.3