summaryrefslogtreecommitdiffstats
path: root/src/input_common/sdl/sdl.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-05-16 05:20:18 +0200
committerGitHub <noreply@github.com>2021-05-16 05:20:18 +0200
commit6c78c2ae38cbcdf80f2dcab40513110a072c6c18 (patch)
tree14d75f5a675c243277b8948262dc5e4f934e91c0 /src/input_common/sdl/sdl.h
parentMerge pull request #6300 from Morph1984/mbedtls (diff)
parentinput_common: Implement SDL motion (diff)
downloadyuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.gz
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.bz2
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.lz
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.xz
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.zst
yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.zip
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:
virtual AnalogMapping GetAnalogMappingForDevice(const Common::ParamPackage&) {
return {};
}
+ virtual MotionMapping GetMotionMappingForDevice(const Common::ParamPackage&) {
+ return {};
+ }
};
class NullState : public State {