summaryrefslogtreecommitdiffstats
path: root/src/core/frontend
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-09-30 13:24:11 +0200
committerGitHub <noreply@github.com>2020-09-30 13:24:11 +0200
commit4d0ae1a17a031488eadfa9133dac157fb71900c0 (patch)
tree166c4c4e09b828b4c987c6aacf00f5a041a79588 /src/core/frontend
parentMerge pull request #4726 from lioncash/applet (diff)
parentFirst implementation of controller rumble (diff)
downloadyuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar.gz
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar.bz2
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar.lz
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar.xz
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.tar.zst
yuzu-4d0ae1a17a031488eadfa9133dac157fb71900c0.zip
Diffstat (limited to 'src/core/frontend')
-rw-r--r--src/core/frontend/input.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/frontend/input.h b/src/core/frontend/input.h
index 9da0d2829..277b70e53 100644
--- a/src/core/frontend/input.h
+++ b/src/core/frontend/input.h
@@ -33,6 +33,9 @@ public:
virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const {
return {};
}
+ virtual bool SetRumblePlay(f32 amp_high, f32 amp_low, f32 freq_high, f32 freq_low) const {
+ return {};
+ }
};
/// An abstract class template for a factory that can create input devices.