summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2021-07-12 22:11:39 -0700
committerGravatar GitHub2021-07-12 22:11:39 -0700
commitaf79911017b90d091c23cb5024c96c5ca436c491 (patch)
tree14c01f428bbbe249740cd904bb67b285e756c533 /src
parentMerge pull request #6615 from ReinUsesLisp/httplib-debug-warnings (diff)
parentinput_common: Fix build with sdl disabled (diff)
downloadyuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.gz
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.xz
yuzu-af79911017b90d091c23cb5024c96c5ca436c491.zip
Merge pull request #6593 from german77/no_sdl
input_common: Fix build with SDL disabled
Diffstat (limited to 'src')
-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() {
294 impl->udp->ReloadSockets(); 294 impl->udp->ReloadSockets();
295} 295}
296 296
297std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers( 297std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers([
298 Polling::DeviceType type) const { 298 [maybe_unused]] Polling::DeviceType type) const {
299#ifdef HAVE_SDL2 299#ifdef HAVE_SDL2
300 return impl->sdl->GetPollers(type); 300 return impl->sdl->GetPollers(type);
301#else 301#else