diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-05 18:47:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 18:47:42 +0200 |
commit | 942c0d6cdd7975ded7435917ce24fdbaa4b8077d (patch) | |
tree | 04282eae13b0e03b7fded4e42b44b827ae8d08ce /src | |
parent | Merge pull request #6559 from german77/compilation_warnings (diff) | |
parent | input_common: Add missing modifier callback to analog from button (diff) | |
download | yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar.gz yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar.bz2 yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar.lz yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar.xz yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.tar.zst yuzu-942c0d6cdd7975ded7435917ce24fdbaa4b8077d.zip |
Diffstat (limited to 'src')
-rwxr-xr-x | src/input_common/analog_from_button.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_common/analog_from_button.cpp b/src/input_common/analog_from_button.cpp index 100138d11..2fafd077f 100755 --- a/src/input_common/analog_from_button.cpp +++ b/src/input_common/analog_from_button.cpp @@ -27,6 +27,7 @@ public: down->SetCallback(callbacks); left->SetCallback(callbacks); right->SetCallback(callbacks); + modifier->SetCallback(callbacks); } bool IsAngleGreater(float old_angle, float new_angle) const { |