diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-15 12:22:01 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-22 10:50:03 +0100 |
commit | 5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a (patch) | |
tree | 4f65578a7b6cd6d5f379b177919583bcfb8e71f3 /src/core | |
parent | Merge pull request #4944 from lioncash/system-rem (diff) | |
download | yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.gz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.bz2 yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.lz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.xz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.zst yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/frontend/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/frontend/input.h b/src/core/frontend/input.h index 25ac5af46..95c2848eb 100644 --- a/src/core/frontend/input.h +++ b/src/core/frontend/input.h @@ -30,7 +30,7 @@ public: virtual StatusType GetStatus() const { return {}; } - virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const { + 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 { |