diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-25 13:33:01 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-25 13:33:30 -0500 |
commit | 6f70e1b1ff01830ff651aa3e38048e659d61b26e (patch) | |
tree | 9c908f8bc5ec4c963d81260899347be7fef1ece1 /src | |
parent | 9aeada734d4e1793ce2e7c57678e83501f292afc (diff) |
hid: Check if applet_resource exists in InitializeVibrationDevice
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 902516b29c..db9f5e7011 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -155,8 +155,10 @@ private: IPC::RequestParser rp{ctx}; const auto vibration_device_handle{rp.PopRaw<Controller_NPad::DeviceHandle>()}; - applet_resource->GetController<Controller_NPad>(HidController::NPad) - .InitializeVibrationDevice(vibration_device_handle); + if (applet_resource != nullptr) { + applet_resource->GetController<Controller_NPad>(HidController::NPad) + .InitializeVibrationDevice(vibration_device_handle); + } LOG_DEBUG(Service_HID, "called, npad_type={}, npad_id={}, device_index={}", vibration_device_handle.npad_type, vibration_device_handle.npad_id, |