diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-24 06:42:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 06:42:06 +0100 |
commit | 6694e11303d81c11985f4a330cf100ae86202bb2 (patch) | |
tree | ba750a2e1bf7e5efa3689781a24a46cd65714f21 /src/input_common/gcadapter | |
parent | Merge pull request #4980 from bunnei/error-fixup (diff) | |
download | yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.gz yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.bz2 yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.lz yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.xz yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.zst yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.zip |
Diffstat (limited to 'src/input_common/gcadapter')
-rw-r--r-- | src/input_common/gcadapter/gc_poller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/gcadapter/gc_poller.cpp b/src/input_common/gcadapter/gc_poller.cpp index 6d0c333ee..4d1052414 100644 --- a/src/input_common/gcadapter/gc_poller.cpp +++ b/src/input_common/gcadapter/gc_poller.cpp @@ -299,8 +299,8 @@ public: return gcadapter->RumblePlay(port, 0); } - bool SetRumblePlay(f32 amp_low, [[maybe_unused]] f32 freq_low, [[maybe_unused]] 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 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); |