aboutsummaryrefslogtreecommitdiff
path: root/src/hid_core/resource_manager.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-25 23:46:00 -0600
committerNarr the Reg <juangerman-13@hotmail.com>2024-01-25 23:46:46 -0600
commitf2012e5aff21e1ba0d06bfab868191d221e8f7ed (patch)
tree0c170b92b72a5be216c2b0e3aafd451feb2bb7f4 /src/hid_core/resource_manager.cpp
parente04368ad7cf4c8d8820ef4da451d9954ff38cb2d (diff)
service: hid: Don't try to vibrate if device isn't initialized
Diffstat (limited to 'src/hid_core/resource_manager.cpp')
-rw-r--r--src/hid_core/resource_manager.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hid_core/resource_manager.cpp b/src/hid_core/resource_manager.cpp
index ca824b4a3..8ef0df020 100644
--- a/src/hid_core/resource_manager.cpp
+++ b/src/hid_core/resource_manager.cpp
@@ -373,6 +373,10 @@ Result ResourceManager::SendVibrationValue(u64 aruid,
device = GetNSVibrationDevice(handle);
}
if (device != nullptr) {
+ // Prevent sending vibrations to an inactive vibration handle
+ if (!device->IsActive()) {
+ return ResultSuccess;
+ }
result = device->SendVibrationValue(value);
}
return result;