diff options
author | german77 <juangerman-13@hotmail.com> | 2021-07-10 20:06:07 -0500 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-07-10 20:06:07 -0500 |
commit | ed5f1a45b74f90fecc1fe4ec829e190f8172ffd1 (patch) | |
tree | d148002103e793b570c4e98e928594f3980d4027 /src | |
parent | 7dca756f30242c6af5849856375129c561584049 (diff) |
npad: Disable vibration check if disabled
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid/controllers/npad.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp index 1eb02aee2..6ce1360e3 100644 --- a/src/core/hle/service/hid/controllers/npad.cpp +++ b/src/core/hle/service/hid/controllers/npad.cpp @@ -941,6 +941,11 @@ void Controller_NPad::InitializeVibrationDevice(const DeviceHandle& vibration_de void Controller_NPad::InitializeVibrationDeviceAtIndex(std::size_t npad_index, std::size_t device_index) { + if (!Settings::values.vibration_enabled.GetValue()) { + vibration_devices_mounted[npad_index][device_index] = false; + return; + } + if (vibrations[npad_index][device_index]) { vibration_devices_mounted[npad_index][device_index] = vibrations[npad_index][device_index]->GetStatus() == 1; |