diff options
| author | 2020-11-23 21:42:06 -0800 | |
|---|---|---|
| committer | 2020-11-23 21:42:06 -0800 | |
| commit | 6694e11303d81c11985f4a330cf100ae86202bb2 (patch) | |
| tree | ba750a2e1bf7e5efa3689781a24a46cd65714f21 /src | |
| parent | Merge pull request #4980 from bunnei/error-fixup (diff) | |
| download | yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.gz yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.tar.xz yuzu-6694e11303d81c11985f4a330cf100ae86202bb2.zip | |
input_common: Fix typo in gc_poller.cpp with [[maybe_unused]].
Diffstat (limited to 'src')
| -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: | |||
| 299 | return gcadapter->RumblePlay(port, 0); | 299 | return gcadapter->RumblePlay(port, 0); |
| 300 | } | 300 | } |
| 301 | 301 | ||
| 302 | bool SetRumblePlay(f32 amp_low, [[maybe_unused]] f32 freq_low, [[maybe_unused]] f32 amp_high, | 302 | bool SetRumblePlay(f32 amp_low, [[maybe_unused]] f32 freq_low, f32 amp_high, |
| 303 | f32 freq_high) const override { | 303 | [[maybe_unused]] f32 freq_high) const override { |
| 304 | const auto mean_amplitude = (amp_low + amp_high) * 0.5f; | 304 | const auto mean_amplitude = (amp_low + amp_high) * 0.5f; |
| 305 | const auto processed_amplitude = | 305 | const auto processed_amplitude = |
| 306 | static_cast<u8>((mean_amplitude + std::pow(mean_amplitude, 0.3f)) * 0.5f * 0x8); | 306 | static_cast<u8>((mean_amplitude + std::pow(mean_amplitude, 0.3f)) * 0.5f * 0x8); |