diff options
Diffstat (limited to 'src/input_common/input_engine.h')
| -rw-r--r-- | src/input_common/input_engine.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index 8a953c382..31ce900d7 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h | |||
| @@ -121,14 +121,16 @@ public: | |||
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | // Sets rumble to a controller | 123 | // Sets rumble to a controller |
| 124 | virtual Input::VibrationError SetRumble([[maybe_unused]] const PadIdentifier& identifier, | 124 | virtual Input::VibrationError SetRumble( |
| 125 | [[maybe_unused]] const Input::VibrationStatus vibration) { | 125 | [[maybe_unused]] const PadIdentifier& identifier, |
| 126 | [[maybe_unused]] const Input::VibrationStatus vibration) { | ||
| 126 | return Input::VibrationError::NotSupported; | 127 | return Input::VibrationError::NotSupported; |
| 127 | } | 128 | } |
| 128 | 129 | ||
| 129 | // Sets polling mode to a controller | 130 | // Sets polling mode to a controller |
| 130 | virtual Input::PollingError SetPollingMode([[maybe_unused]] const PadIdentifier& identifier, | 131 | virtual Input::PollingError SetPollingMode( |
| 131 | [[maybe_unused]] const Input::PollingMode vibration) { | 132 | [[maybe_unused]] const PadIdentifier& identifier, |
| 133 | [[maybe_unused]] const Input::PollingMode vibration) { | ||
| 132 | return Input::PollingError::NotSupported; | 134 | return Input::PollingError::NotSupported; |
| 133 | } | 135 | } |
| 134 | 136 | ||