diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-25 12:13:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 12:13:18 -0400 |
commit | 77803d96be3f6ec590b63966359b8f5fa56013db (patch) | |
tree | 1c6b80a6ee305d457319ccacd71de333eaaf43f9 /src/input_common/drivers/gc_adapter.cpp | |
parent | fa913a702f94818fcddf4ffd3aaded41a41b3a3b (diff) | |
parent | 7f66050f0c383a5c7d82c5c58098f819d4e1e0bc (diff) |
Merge pull request #9107 from german77/gidoly_rules
input_common: cache vibration tests
Diffstat (limited to 'src/input_common/drivers/gc_adapter.cpp')
-rw-r--r-- | src/input_common/drivers/gc_adapter.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/input_common/drivers/gc_adapter.cpp b/src/input_common/drivers/gc_adapter.cpp index f4dd24e7d..826fa2109 100644 --- a/src/input_common/drivers/gc_adapter.cpp +++ b/src/input_common/drivers/gc_adapter.cpp @@ -324,7 +324,7 @@ bool GCAdapter::GetGCEndpoint(libusb_device* device) { return true; } -Common::Input::VibrationError GCAdapter::SetRumble( +Common::Input::VibrationError GCAdapter::SetVibration( const PadIdentifier& identifier, const Common::Input::VibrationStatus& vibration) { const auto mean_amplitude = (vibration.low_amplitude + vibration.high_amplitude) * 0.5f; const auto processed_amplitude = @@ -338,6 +338,10 @@ Common::Input::VibrationError GCAdapter::SetRumble( return Common::Input::VibrationError::None; } +bool GCAdapter::IsVibrationEnabled([[maybe_unused]] const PadIdentifier& identifier) { + return rumble_enabled; +} + void GCAdapter::UpdateVibrations() { // Use 8 states to keep the switching between on/off fast enough for // a human to feel different vibration strenght |