diff options
| author | 2021-05-15 23:20:18 -0400 | |
|---|---|---|
| committer | 2021-05-15 23:20:18 -0400 | |
| commit | 6c78c2ae38cbcdf80f2dcab40513110a072c6c18 (patch) | |
| tree | 14d75f5a675c243277b8948262dc5e4f934e91c0 /src/input_common/sdl/sdl.h | |
| parent | Merge pull request #6300 from Morph1984/mbedtls (diff) | |
| parent | input_common: Implement SDL motion (diff) | |
| download | yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.gz yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.tar.xz yuzu-6c78c2ae38cbcdf80f2dcab40513110a072c6c18.zip | |
Merge pull request #6244 from german77/sdlmotion
input_common: Implement SDL motion
Diffstat (limited to 'src/input_common/sdl/sdl.h')
| -rw-r--r-- | src/input_common/sdl/sdl.h | 3 |
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 | ||
| 42 | class NullState : public State { | 45 | class NullState : public State { |