Browse Source

input_common: Fix build with sdl disabled

nce_cpp
german77 5 years ago
parent
commit
77db68f9e3
  1. 4
      src/input_common/main.cpp

4
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

Loading…
Cancel
Save