mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 20:18:00 -05:00
input_common: Add more missing [[maybe_unused]] from #4927.
This commit is contained in:
@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user