diff options
| author | 2019-10-04 22:48:53 +0000 | |
|---|---|---|
| committer | 2019-10-04 23:41:21 +0000 | |
| commit | 634c6e24b0743b1116c52ce3f4c37fab32ebaa91 (patch) | |
| tree | b7c2a0a5d6044384aa647cd5ade819348e1ba183 /src/core | |
| parent | service/friend: Remove unused field (diff) | |
| download | yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.gz yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.xz yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.zip | |
service/hid: Remove unused system reference
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/hid/controllers/gesture.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/hid/controllers/gesture.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.cpp b/src/core/hle/service/hid/controllers/gesture.cpp index 80da0a0d3..0ceabb5bb 100644 --- a/src/core/hle/service/hid/controllers/gesture.cpp +++ b/src/core/hle/service/hid/controllers/gesture.cpp | |||
| @@ -11,7 +11,7 @@ namespace Service::HID { | |||
| 11 | constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3BA00; | 11 | constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3BA00; |
| 12 | 12 | ||
| 13 | Controller_Gesture::Controller_Gesture(Core::System& system) | 13 | Controller_Gesture::Controller_Gesture(Core::System& system) |
| 14 | : ControllerBase(system), system(system) {} | 14 | : ControllerBase(system) {} |
| 15 | Controller_Gesture::~Controller_Gesture() = default; | 15 | Controller_Gesture::~Controller_Gesture() = default; |
| 16 | 16 | ||
| 17 | void Controller_Gesture::OnInit() {} | 17 | void Controller_Gesture::OnInit() {} |
diff --git a/src/core/hle/service/hid/controllers/gesture.h b/src/core/hle/service/hid/controllers/gesture.h index 396897527..f650b8338 100644 --- a/src/core/hle/service/hid/controllers/gesture.h +++ b/src/core/hle/service/hid/controllers/gesture.h | |||
| @@ -59,6 +59,5 @@ private: | |||
| 59 | std::array<GestureState, 17> gesture_states; | 59 | std::array<GestureState, 17> gesture_states; |
| 60 | }; | 60 | }; |
| 61 | SharedMemory shared_memory{}; | 61 | SharedMemory shared_memory{}; |
| 62 | Core::System& system; | ||
| 63 | }; | 62 | }; |
| 64 | } // namespace Service::HID | 63 | } // namespace Service::HID |