Browse Source
Merge pull request #6593 from german77/no_sdl
input_common: Fix build with SDL disabled
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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
|
|
|
|
|