diff options
| author | 2020-11-23 17:25:53 -0800 | |
|---|---|---|
| committer | 2020-11-23 17:25:53 -0800 | |
| commit | e371d12af6046c316956edb2f6322ad66c0189d4 (patch) | |
| tree | 77be1c6d43761f3e2df60a45f6224865dd4835cc /src/core | |
| parent | Merge pull request #4451 from slashiee/extended-logging (diff) | |
| parent | input_common: Treat warnings as errors (diff) | |
| download | yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.tar.gz yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.tar.xz yuzu-e371d12af6046c316956edb2f6322ad66c0189d4.zip | |
Merge pull request #4927 from lioncash/input-error
input_common: Treat warnings as errors
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: | |||
| 30 | virtual StatusType GetStatus() const { | 30 | virtual StatusType GetStatus() const { |
| 31 | return {}; | 31 | return {}; |
| 32 | } | 32 | } |
| 33 | virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const { | 33 | virtual bool GetAnalogDirectionStatus([[maybe_unused]] AnalogDirection direction) const { |
| 34 | return {}; | 34 | return {}; |
| 35 | } | 35 | } |
| 36 | virtual bool SetRumblePlay(f32 amp_low, f32 freq_low, f32 amp_high, f32 freq_high) const { | 36 | virtual bool SetRumblePlay(f32 amp_low, f32 freq_low, f32 amp_high, f32 freq_high) const { |