mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-11 16:57:53 -05:00
service: hid: Don't try to vibrate if device isn't initialized
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user