diff options
| author | german77 <juangerman-13@hotmail.com> | 2021-09-20 20:31:06 -0500 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-24 20:30:23 -0600 |
| commit | 072559dede9e4ab098b84f43ee6db31d3987b2c3 (patch) | |
| tree | 816f8ab5425564c15d758e5c374acdefc466bd6b /src/core/hle/service/hid/controllers/stubbed.cpp | |
| parent | dbe030110256876438cf568314e3ffb60cd89952 (diff) | |
service/hid: Update debug pad, xpad, stubbed and controller base to use ring lifo and the emulated controller
Diffstat (limited to 'src/core/hle/service/hid/controllers/stubbed.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/stubbed.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/stubbed.cpp b/src/core/hle/service/hid/controllers/stubbed.cpp index 772c20453..a8c93909d 100644 --- a/src/core/hle/service/hid/controllers/stubbed.cpp +++ b/src/core/hle/service/hid/controllers/stubbed.cpp @@ -31,10 +31,9 @@ void Controller_Stubbed::OnUpdate(const Core::Timing::CoreTiming& core_timing, u std::memcpy(data + common_offset, &header, sizeof(CommonHeader)); } -void Controller_Stubbed::OnLoadInputDevices() {} - void Controller_Stubbed::SetCommonHeaderOffset(std::size_t off) { common_offset = off; smart_update = true; } + } // namespace Service::HID |
