diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-23 20:50:35 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-11-23 20:50:35 -0800 |
commit | 7fb7540d69a75c70971324bc36492ee81d72de3b (patch) | |
tree | 9d9fd5a153647b40e26b6dc2d04bf4570c7db78c /src/input_common/sdl/sdl_impl.cpp | |
parent | d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34 (diff) |
input_common: Add more missing [[maybe_unused]] from #4927.
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
-rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index c16928e988..7827e324cb 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -400,7 +400,8 @@ public: return joystick->RumblePlay(0, 0); } - bool SetRumblePlay(f32 amp_low, f32 freq_low, f32 amp_high, f32 freq_high) const override { + bool SetRumblePlay(f32 amp_low, [[maybe_unused]] f32 freq_low, f32 amp_high, + [[maybe_unused]] f32 freq_high) const override { const auto process_amplitude = [](f32 amplitude) { return static_cast<u16>((amplitude + std::pow(amplitude, 0.3f)) * 0.5f * 0xFFFF); }; |