summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-08-17 14:49:28 +0200
committerGitHub <noreply@github.com>2020-08-17 14:49:28 +0200
commit55c931d6248c6dda5a8a9cbd332131255d62bc3f (patch)
tree9ea6e7205a2e37c587b44432749fb0a5cd438f2b /Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp
parent6104018fe13eeb02dfd26f02fb42d74e77e39f16 (diff)
parentca61b6c1ab7966cb7f3509c81439e5c673f5ae88 (diff)
Merge pull request #8995 from Tilka/warnings
Fix some more GCC warnings
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp4
1 files changed, 2 insertions, 2 deletions
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