summaryrefslogtreecommitdiffstats
path: root/src/hid_core/resource_manager.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-26 06:46:00 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2024-01-26 06:46:46 +0100
commitf2012e5aff21e1ba0d06bfab868191d221e8f7ed (patch)
tree0c170b92b72a5be216c2b0e3aafd451feb2bb7f4 /src/hid_core/resource_manager.cpp
parentMerge pull request #12759 from liamwhite/mp-misc (diff)
downloadyuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar.gz
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar.bz2
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar.lz
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar.xz
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.tar.zst
yuzu-f2012e5aff21e1ba0d06bfab868191d221e8f7ed.zip
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;