diff options
| author | german77 <juangerman-13@hotmail.com> | 2023-01-02 22:11:03 -0600 | 
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-01-19 18:05:22 -0600 | 
| commit | d05ea2f3ebdf62e328d2edbfc5b9bc01e3453569 (patch) | |
| tree | 5863733770eb47f15aa528438e47a1cab2e794b4 /src/core/hle | |
| parent | 459fb2b21337bae60194a2a99ce68c87aaed522d (diff) | |
input_common: Fix issue where ring and irs are enabled at the same time
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/hid/irs.cpp | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/src/core/hle/service/hid/irs.cpp b/src/core/hle/service/hid/irs.cpp index 3c1fa2274..1a6fa2a44 100644 --- a/src/core/hle/service/hid/irs.cpp +++ b/src/core/hle/service/hid/irs.cpp @@ -74,8 +74,6 @@ void IRS::DeactivateIrsensor(Kernel::HLERequestContext& ctx) {      LOG_WARNING(Service_IRS, "(STUBBED) called, applet_resource_user_id={}",                  applet_resource_user_id); -    npad_device->SetPollingMode(Common::Input::PollingMode::Active); -      IPC::ResponseBuilder rb{ctx, 2};      rb.Push(ResultSuccess);  } @@ -514,7 +512,7 @@ void IRS::StopImageProcessorAsync(Kernel::HLERequestContext& ctx) {      auto result = IsIrCameraHandleValid(parameters.camera_handle);      if (result.IsSuccess()) {          // TODO: Stop image processor async -        npad_device->SetPollingMode(Common::Input::PollingMode::IR); +        npad_device->SetPollingMode(Common::Input::PollingMode::Active);          result = ResultSuccess;      } | 
