diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-01-04 15:50:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-04 15:50:33 -0500 |
| commit | 0e93cad4f09919bdcb01b78234972bbff7718e5d (patch) | |
| tree | aba09a6d8801b28dbfb6c7f5f35b4a666db6d931 /src/core/hle/service/hid/irs.cpp | |
| parent | 148ad0cf0b08a0c41db6450f38ccb6ecf95b938a (diff) | |
| parent | 55623222908d2fd979de9ab101b1deff33a622f8 (diff) | |
Merge pull request #12549 from german77/npadresource
service: hid: Implement NpadResource and NpadData
Diffstat (limited to 'src/core/hle/service/hid/irs.cpp')
| -rw-r--r-- | src/core/hle/service/hid/irs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/irs.cpp b/src/core/hle/service/hid/irs.cpp index 008debfd1..05ed31273 100644 --- a/src/core/hle/service/hid/irs.cpp +++ b/src/core/hle/service/hid/irs.cpp @@ -315,7 +315,7 @@ void IRS::GetNpadIrCameraHandle(HLERequestContext& ctx) { if (npad_id > Core::HID::NpadIdType::Player8 && npad_id != Core::HID::NpadIdType::Invalid && npad_id != Core::HID::NpadIdType::Handheld) { IPC::ResponseBuilder rb{ctx, 2}; - rb.Push(Service::HID::InvalidNpadId); + rb.Push(Service::HID::ResultInvalidNpadId); return; } |
