diff options
| author | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 16:41:34 +1000 |
|---|---|---|
| committer | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 16:41:34 +1000 |
| commit | bd1c4ec9a008af9654385ce4f7a96b81a52c9ff6 (patch) | |
| tree | b432d1cdfe0c5d40af58717f126c91a5d7fd2ab4 /src/core/hle/service/hid/controllers/gesture.cpp | |
| parent | fcdbf0bc53d9361351ac8bae22d590e526fdb49d (diff) | |
Rebase
Diffstat (limited to 'src/core/hle/service/hid/controllers/gesture.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/gesture.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.cpp b/src/core/hle/service/hid/controllers/gesture.cpp index c01fd6d4e..80da0a0d3 100644 --- a/src/core/hle/service/hid/controllers/gesture.cpp +++ b/src/core/hle/service/hid/controllers/gesture.cpp @@ -10,10 +10,11 @@ namespace Service::HID { constexpr std::size_t SHARED_MEMORY_OFFSET = 0x3BA00; -Controller_Gesture::Controller_Gesture() = default; +Controller_Gesture::Controller_Gesture(Core::System& system) + : ControllerBase(system), system(system) {} Controller_Gesture::~Controller_Gesture() = default; -void Controller_Gesture::OnInit(Core::System& system) {} +void Controller_Gesture::OnInit() {} void Controller_Gesture::OnRelease() {} |
