Browse Source
input_common: Fix typo in gc_poller.cpp with [[maybe_unused]].
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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); |
|
|
|
|