diff options
| author | 2018-08-03 00:18:52 -0400 | |
|---|---|---|
| committer | 2018-08-03 00:18:52 -0400 | |
| commit | 9e48ca23b2522ba60138641a587ada0694d27c47 (patch) | |
| tree | 045c1f47c8ff1dd968f69d706b35861319ece363 /src/input_common/motion_emu.cpp | |
| parent | Merge pull request #907 from lioncash/slot (diff) | |
| parent | input_common: Use std::move where applicable (diff) | |
| download | yuzu-9e48ca23b2522ba60138641a587ada0694d27c47.tar.gz yuzu-9e48ca23b2522ba60138641a587ada0694d27c47.tar.xz yuzu-9e48ca23b2522ba60138641a587ada0694d27c47.zip | |
Merge pull request #906 from lioncash/override
input_common: minor changes
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 caffe48cb..9570c060e 100644 --- a/src/input_common/motion_emu.cpp +++ b/src/input_common/motion_emu.cpp | |||
| @@ -131,7 +131,7 @@ public: | |||
| 131 | device = std::make_shared<MotionEmuDevice>(update_millisecond, sensitivity); | 131 | device = std::make_shared<MotionEmuDevice>(update_millisecond, sensitivity); |
| 132 | } | 132 | } |
| 133 | 133 | ||
| 134 | std::tuple<Math::Vec3<float>, Math::Vec3<float>> GetStatus() const { | 134 | std::tuple<Math::Vec3<float>, Math::Vec3<float>> GetStatus() const override { |
| 135 | return device->GetStatus(); | 135 | return device->GetStatus(); |
| 136 | } | 136 | } |
| 137 | 137 | ||