diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-15 12:22:01 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-22 10:50:03 +0100 |
commit | 5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a (patch) | |
tree | 4f65578a7b6cd6d5f379b177919583bcfb8e71f3 /src/input_common/sdl | |
parent | Merge pull request #4944 from lioncash/system-rem (diff) | |
download | yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.gz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.bz2 yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.lz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.xz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.zst yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.zip |
Diffstat (limited to 'src/input_common/sdl')
-rw-r--r-- | src/input_common/sdl/sdl.h | 2 | ||||
-rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h index f3554be9a..42bbf14d4 100644 --- a/src/input_common/sdl/sdl.h +++ b/src/input_common/sdl/sdl.h @@ -23,7 +23,7 @@ public: /// Unregisters SDL device factories and shut them down. virtual ~State() = default; - virtual Pollers GetPollers(Polling::DeviceType type) { + virtual Pollers GetPollers(Polling::DeviceType) { return {}; } diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index c395d96cf..c16928e98 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -864,6 +864,8 @@ Common::ParamPackage SDLEventToMotionParamPackage(SDLState& state, const SDL_Eve Common::ParamPackage BuildParamPackageForBinding(int port, const std::string& guid, const SDL_GameControllerButtonBind& binding) { switch (binding.bindType) { + case SDL_CONTROLLER_BINDTYPE_NONE: + break; case SDL_CONTROLLER_BINDTYPE_AXIS: return BuildAnalogParamPackageForButton(port, guid, binding.value.axis); case SDL_CONTROLLER_BINDTYPE_BUTTON: @@ -984,7 +986,7 @@ class SDLPoller : public InputCommon::Polling::DevicePoller { public: explicit SDLPoller(SDLState& state_) : state(state_) {} - void Start(const std::string& device_id) override { + void Start([[maybe_unused]] const std::string& device_id) override { state.event_queue.Clear(); state.polling = true; } |