diff options
| author | 2020-10-14 02:51:14 -0400 | |
|---|---|---|
| committer | 2020-10-15 19:37:51 -0400 | |
| commit | 046c0c91a3ed665531f20955e7cfb86fe5b73213 (patch) | |
| tree | 94382af9cc339cf5f384f4d0c8938dd593b4e1c5 /src/input_common/main.cpp | |
| parent | Merge pull request #4787 from lioncash/conversion (diff) | |
| download | yuzu-046c0c91a3ed665531f20955e7cfb86fe5b73213.tar.gz yuzu-046c0c91a3ed665531f20955e7cfb86fe5b73213.tar.xz yuzu-046c0c91a3ed665531f20955e7cfb86fe5b73213.zip | |
input_common/CMakeLists: Make some warnings errors
Makes the input_common code warnings consistent with the rest of the
codebase.
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 | } |