Merge pull request #6593 from german77/no_sdl
input_common: Fix build with SDL disabled
This commit is contained in:
commit
af79911017
|
@ -294,8 +294,8 @@ void InputSubsystem::ReloadInputDevices() {
|
||||||
impl->udp->ReloadSockets();
|
impl->udp->ReloadSockets();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers(
|
std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers([
|
||||||
Polling::DeviceType type) const {
|
[maybe_unused]] Polling::DeviceType type) const {
|
||||||
#ifdef HAVE_SDL2
|
#ifdef HAVE_SDL2
|
||||||
return impl->sdl->GetPollers(type);
|
return impl->sdl->GetPollers(type);
|
||||||
#else
|
#else
|
||||||
|
|
Reference in New Issue