diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-24 03:11:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 03:11:21 +0100 |
commit | d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34 (patch) | |
tree | cacb8a0f5ec92911c0ab255c416f13e72943af68 /src/core | |
parent | Merge pull request #4927 from lioncash/input-error (diff) | |
download | yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar.gz yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar.bz2 yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar.lz yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar.xz yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.tar.zst yuzu-d04abd39eb3dd5333cbd84e2bb6ad7e4f438de34.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/frontend/input.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/frontend/input.h b/src/core/frontend/input.h index 95c2848eb..11c2e96ca 100644 --- a/src/core/frontend/input.h +++ b/src/core/frontend/input.h @@ -33,7 +33,9 @@ public: virtual bool GetAnalogDirectionStatus([[maybe_unused]] AnalogDirection direction) const { return {}; } - virtual bool SetRumblePlay(f32 amp_low, f32 freq_low, f32 amp_high, f32 freq_high) const { + virtual bool SetRumblePlay([[maybe_unused]] f32 amp_low, [[maybe_unused]] f32 freq_low, + [[maybe_unused]] f32 amp_high, + [[maybe_unused]] f32 freq_high) const { return {}; } }; |