diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-10-05 00:48:53 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-10-05 01:41:21 +0200 |
commit | 634c6e24b0743b1116c52ce3f4c37fab32ebaa91 (patch) | |
tree | b7c2a0a5d6044384aa647cd5ade819348e1ba183 | |
parent | service/friend: Remove unused field (diff) | |
download | yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.gz yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.bz2 yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.lz yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.xz yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.tar.zst yuzu-634c6e24b0743b1116c52ce3f4c37fab32ebaa91.zip |
-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 { constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3BA00; Controller_Gesture::Controller_Gesture(Core::System& system) - : ControllerBase(system), system(system) {} + : ControllerBase(system) {} Controller_Gesture::~Controller_Gesture() = default; 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: std::array<GestureState, 17> gesture_states; }; SharedMemory shared_memory{}; - Core::System& system; }; } // namespace Service::HID |