diff options
author | Lioncash <mathew1800@gmail.com> | 2021-12-13 08:52:06 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-12-13 08:52:09 -0500 |
commit | 3c618a330630ccde8233b0bb7d0bc21059829fa8 (patch) | |
tree | 804862fa153dd9d632d24414e4ed8bd66e0791ee /src/input_common/input_engine.h | |
parent | 3592628302409dce264bb017d70880ecee74173c (diff) |
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: // Sets a led pattern for a controller virtual void SetLeds([[maybe_unused]] const PadIdentifier& identifier, - [[maybe_unused]] const Common::Input::LedStatus led_status) { - return; - } + [[maybe_unused]] const Common::Input::LedStatus led_status) {} // Sets rumble to a controller virtual Common::Input::VibrationError SetRumble( |