summaryrefslogtreecommitdiff
path: root/src/input_common/sdl/sdl.h
diff options
context:
space:
mode:
authorGravatar german772021-04-25 18:03:57 -0500
committerGravatar german772021-05-15 08:56:58 -0500
commitf20f4587e65160a193f336c98cfcb03af3aef256 (patch)
tree14d75f5a675c243277b8948262dc5e4f934e91c0 /src/input_common/sdl/sdl.h
parentMerge pull request #6300 from Morph1984/mbedtls (diff)
downloadyuzu-f20f4587e65160a193f336c98cfcb03af3aef256.tar.gz
yuzu-f20f4587e65160a193f336c98cfcb03af3aef256.tar.xz
yuzu-f20f4587e65160a193f336c98cfcb03af3aef256.zip
input_common: Implement SDL motion
Diffstat (limited to 'src/input_common/sdl/sdl.h')
-rw-r--r--src/input_common/sdl/sdl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h
index 42bbf14d4..b5d41bba4 100644
--- a/src/input_common/sdl/sdl.h
+++ b/src/input_common/sdl/sdl.h
@@ -37,6 +37,9 @@ public:
37 virtual AnalogMapping GetAnalogMappingForDevice(const Common::ParamPackage&) { 37 virtual AnalogMapping GetAnalogMappingForDevice(const Common::ParamPackage&) {
38 return {}; 38 return {};
39 } 39 }
40 virtual MotionMapping GetMotionMappingForDevice(const Common::ParamPackage&) {
41 return {};
42 }
40}; 43};
41 44
42class NullState : public State { 45class NullState : public State {