diff options
| author | 2020-10-15 20:59:34 -0700 | |
|---|---|---|
| committer | 2020-10-15 20:59:34 -0700 | |
| commit | 64f967fd4958abb5a02191a81e91fc8b33bcf4c5 (patch) | |
| tree | 97a73da4871f006b39eafca3a881ae2ea42f206a /src/input_common/main.cpp | |
| parent | Merge pull request #4784 from bunnei/cancelbuffer (diff) | |
| parent | input_common/CMakeLists: Make some warnings errors (diff) | |
| download | yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.tar.gz yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.tar.xz yuzu-64f967fd4958abb5a02191a81e91fc8b33bcf4c5.zip | |
Merge pull request #4790 from lioncash/input-common
input_common/CMakeLists: Make some warnings errors
Diffstat (limited to 'src/input_common/main.cpp')
| -rw-r--r-- | src/input_common/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 3d97d95f7..d32fd8b81 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp | |||
| @@ -196,6 +196,10 @@ ButtonMapping InputSubsystem::GetButtonMappingForDevice(const Common::ParamPacka | |||
| 196 | return impl->GetButtonMappingForDevice(device); | 196 | return impl->GetButtonMappingForDevice(device); |
| 197 | } | 197 | } |
| 198 | 198 | ||
| 199 | MotionMapping InputSubsystem::GetMotionMappingForDevice(const Common::ParamPackage& device) const { | ||
| 200 | return impl->GetMotionMappingForDevice(device); | ||
| 201 | } | ||
| 202 | |||
| 199 | GCAnalogFactory* InputSubsystem::GetGCAnalogs() { | 203 | GCAnalogFactory* InputSubsystem::GetGCAnalogs() { |
| 200 | return impl->gcanalog.get(); | 204 | return impl->gcanalog.get(); |
| 201 | } | 205 | } |