diff options
author | LC <mathew1800@gmail.com> | 2020-06-19 15:17:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 15:17:04 -0400 |
commit | 8434630dcc42b65efacecdc3caa49adb4115b88e (patch) | |
tree | 0717f95e8beda4396b754330a77a427793a387ac /src/input_common/motion_emu.cpp | |
parent | 0f7822acb17a8c2534792b074a6181abfb95ec69 (diff) | |
parent | c6a963c48e0a892588060bcc446b579f17fdd19c (diff) |
Merge pull request #4114 from MerryMage/nrvo
Remove redundant moves
Diffstat (limited to 'src/input_common/motion_emu.cpp')
-rw-r--r-- | src/input_common/motion_emu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/motion_emu.cpp b/src/input_common/motion_emu.cpp index 868251628..d4cdf76a3 100644 --- a/src/input_common/motion_emu.cpp +++ b/src/input_common/motion_emu.cpp @@ -145,7 +145,7 @@ std::unique_ptr<Input::MotionDevice> MotionEmu::Create(const Common::ParamPackag // Previously created device is disconnected here. Having two motion devices for 3DS is not // expected. current_device = device_wrapper->device; - return std::move(device_wrapper); + return device_wrapper; } void MotionEmu::BeginTilt(int x, int y) { |