diff options
| author | 2021-12-13 08:52:06 -0500 | |
|---|---|---|
| committer | 2021-12-13 08:52:09 -0500 | |
| commit | 3c618a330630ccde8233b0bb7d0bc21059829fa8 (patch) | |
| tree | 804862fa153dd9d632d24414e4ed8bd66e0791ee /src/input_common/input_engine.h | |
| parent | Merge pull request #7574 from v1993/patch-1 (diff) | |
| download | yuzu-3c618a330630ccde8233b0bb7d0bc21059829fa8.tar.gz yuzu-3c618a330630ccde8233b0bb7d0bc21059829fa8.tar.xz yuzu-3c618a330630ccde8233b0bb7d0bc21059829fa8.zip | |
input_engine: Remove unnecessary return
This is a void function, so it doesn't need this.
Diffstat (limited to 'src/input_common/input_engine.h')
| -rw-r--r-- | src/input_common/input_engine.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index 02272b3f8..fb89f9257 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h | |||
| @@ -116,9 +116,7 @@ public: | |||
| 116 | 116 | ||
| 117 | // Sets a led pattern for a controller | 117 | // Sets a led pattern for a controller |
| 118 | virtual void SetLeds([[maybe_unused]] const PadIdentifier& identifier, | 118 | virtual void SetLeds([[maybe_unused]] const PadIdentifier& identifier, |
| 119 | [[maybe_unused]] const Common::Input::LedStatus led_status) { | 119 | [[maybe_unused]] const Common::Input::LedStatus led_status) {} |
| 120 | return; | ||
| 121 | } | ||
| 122 | 120 | ||
| 123 | // Sets rumble to a controller | 121 | // Sets rumble to a controller |
| 124 | virtual Common::Input::VibrationError SetRumble( | 122 | virtual Common::Input::VibrationError SetRumble( |