diff options
| author | 2018-08-02 21:41:51 -0400 | |
|---|---|---|
| committer | 2018-08-02 21:44:25 -0400 | |
| commit | 29b6afb82f39a9f21389e2d9ee65ff6cdd909db8 (patch) | |
| tree | 7ead7d2f209cac64066d5c91aed3721dd595b9e2 /src/input_common/motion_emu.cpp | |
| parent | Merge pull request #896 from lioncash/audio-out (diff) | |
| download | yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.tar.gz yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.tar.xz yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.zip | |
input_common: Add missing override specifiers
Diffstat (limited to '')
| -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 | ||