diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/hid/controllers/npad.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp index 1fc06ef3f..ba20d3f59 100644 --- a/src/core/hle/service/hid/controllers/npad.cpp +++ b/src/core/hle/service/hid/controllers/npad.cpp | |||
| @@ -684,9 +684,7 @@ bool Controller_NPad::VibrateControllerAtIndex(std::size_t npad_index, | |||
| 684 | const auto& button_state = buttons[npad_index]; | 684 | const auto& button_state = buttons[npad_index]; |
| 685 | 685 | ||
| 686 | return button_state[A - BUTTON_HID_BEGIN]->SetRumblePlay( | 686 | return button_state[A - BUTTON_HID_BEGIN]->SetRumblePlay( |
| 687 | vibration_value.amp_low * Settings::values.vibration_strength.GetValue() / 100, | 687 | vibration_value.amp_low, vibration_value.freq_low, vibration_value.amp_high, |
| 688 | vibration_value.freq_low, | ||
| 689 | vibration_value.amp_high * Settings::values.vibration_strength.GetValue() / 100, | ||
| 690 | vibration_value.freq_high); | 688 | vibration_value.freq_high); |
| 691 | } | 689 | } |
| 692 | 690 | ||