Browse Source
Merge pull request #12425 from german77/temp-fix
service: hid: Fix crash on InitializeVibrationDevice
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/service/hid/hid_server.cpp
|
|
|
@ -51,7 +51,7 @@ private: |
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
const auto vibration_device_handle{rp.PopRaw<Core::HID::VibrationDeviceHandle>()}; |
|
|
|
|
|
|
|
if (resource_manager != nullptr) { |
|
|
|
if (resource_manager != nullptr && resource_manager->GetNpad()) { |
|
|
|
resource_manager->GetNpad()->InitializeVibrationDevice(vibration_device_handle); |
|
|
|
} |
|
|
|
|
|
|
|
|