diff options
| author | 2021-07-10 09:58:35 -0500 | |
|---|---|---|
| committer | 2021-07-10 20:02:02 -0500 | |
| commit | 289f59dabda6b9a85816f7a3075daa472abd1860 (patch) | |
| tree | a55316e19b310630a56cd07af9895e7778f833d9 /src/input_common/main.cpp | |
| parent | Merge pull request #6573 from lat9nq/cpu-settings-cleanup-2 (diff) | |
| download | yuzu-289f59dabda6b9a85816f7a3075daa472abd1860.tar.gz yuzu-289f59dabda6b9a85816f7a3075daa472abd1860.tar.xz yuzu-289f59dabda6b9a85816f7a3075daa472abd1860.zip | |
input_common: Fix build with sdl disabled
Diffstat (limited to 'src/input_common/main.cpp')
| -rw-r--r-- | src/input_common/main.cpp | 4 |
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 | ||
| 297 | std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers( | 297 | std::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 |