summaryrefslogtreecommitdiff
path: root/src/core/frontend/input.h
diff options
context:
space:
mode:
authorGravatar german2020-07-10 21:20:50 -0500
committerGravatar Morph2020-09-29 10:38:25 -0400
commitab88c2f6112edba35bfa91ee8864e760728d16e8 (patch)
tree4c7647f97153276733896cbc6e35d929db926b82 /src/core/frontend/input.h
parentMerge pull request #4719 from lioncash/audio-warn (diff)
downloadyuzu-ab88c2f6112edba35bfa91ee8864e760728d16e8.tar.gz
yuzu-ab88c2f6112edba35bfa91ee8864e760728d16e8.tar.xz
yuzu-ab88c2f6112edba35bfa91ee8864e760728d16e8.zip
First implementation of controller rumble
Diffstat (limited to 'src/core/frontend/input.h')
-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:
33 virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const { 33 virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const {
34 return {}; 34 return {};
35 } 35 }
36 virtual bool SetRumblePlay(f32 amp_high, f32 amp_low, f32 freq_high, f32 freq_low) const {
37 return {};
38 }
36}; 39};
37 40
38/// An abstract class template for a factory that can create input devices. 41/// An abstract class template for a factory that can create input devices.