summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-07-13 07:11:39 +0200
committerGitHub <noreply@github.com>2021-07-13 07:11:39 +0200
commitaf79911017b90d091c23cb5024c96c5ca436c491 (patch)
tree14c01f428bbbe249740cd904bb67b285e756c533
parentMerge pull request #6615 from ReinUsesLisp/httplib-debug-warnings (diff)
parentinput_common: Fix build with sdl disabled (diff)
downloadyuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.gz
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.bz2
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.lz
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.xz
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.zst
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.zip
-rw-r--r--src/input_common/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp
index 7399c3648..8de3d4520 100644
--- a/src/input_common/main.cpp
+++ b/src/input_common/main.cpp
@@ -294,8 +294,8 @@ void InputSubsystem::ReloadInputDevices() {
impl->udp->ReloadSockets();
}
-std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers(
- Polling::DeviceType type) const {
+std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers([
+ [maybe_unused]] Polling::DeviceType type) const {
#ifdef HAVE_SDL2
return impl->sdl->GetPollers(type);
#else