diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-24 05:50:35 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-11-24 05:50:35 +0100 |
commit | 7fb7540d69a75c70971324bc36492ee81d72de3b (patch) | |
tree | 9d9fd5a153647b40e26b6dc2d04bf4570c7db78c /src/input_common/gcadapter | |
parent | Fix warnings in core/frontend/input.h with [[maybe_unused]] (diff) | |
download | yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.gz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.bz2 yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.lz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.xz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.zst yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.zip |
Diffstat (limited to 'src/input_common/gcadapter')
-rw-r--r-- | src/input_common/gcadapter/gc_poller.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input_common/gcadapter/gc_poller.cpp b/src/input_common/gcadapter/gc_poller.cpp index 4e8c7e8b9..6d0c333ee 100644 --- a/src/input_common/gcadapter/gc_poller.cpp +++ b/src/input_common/gcadapter/gc_poller.cpp @@ -299,7 +299,8 @@ public: return gcadapter->RumblePlay(port, 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, [[maybe_unused]] f32 amp_high, + f32 freq_high) const override { const auto mean_amplitude = (amp_low + amp_high) * 0.5f; const auto processed_amplitude = static_cast<u8>((mean_amplitude + std::pow(mean_amplitude, 0.3f)) * 0.5f * 0x8); |