service/hid: Remove unused system reference

This commit is contained in:
ReinUsesLisp 2019-10-04 22:48:53 +00:00
parent 1dbd22e695
commit 634c6e24b0
2 changed files with 1 additions and 2 deletions

View File

@ -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() {}

View File

@ -59,6 +59,5 @@ private:
std::array<GestureState, 17> gesture_states;
};
SharedMemory shared_memory{};
Core::System& system;
};
} // namespace Service::HID