service: hid: Fix crash on InitializeVibrationDevice

master
Narr the Reg 2023-12-20 22:52:36 +07:00
parent bedc758fe7
commit 5cd3b6f58c
1 changed files with 1 additions and 1 deletions

@ -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);
}