From a10f24f030a5f3942316d39f9c491e199c1c6e17 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Thu, 26 Mar 2020 13:52:32 -0700 Subject: [PATCH] input: Process events for unbound controllers --- ui/xemu-input.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/xemu-input.c b/ui/xemu-input.c index 36afa9d8ac..33e94f9bd9 100644 --- a/ui/xemu-input.c +++ b/ui/xemu-input.c @@ -223,10 +223,6 @@ void xemu_input_update_controllers(void) { struct controller_state *iter; for (iter=available_controllers; iter != NULL; iter=iter->next) { - if (iter->bound < 0) { - // Don't process unbound input devices - continue; - } if (iter->type == INPUT_DEVICE_SDL_KEYBOARD) { xemu_input_update_sdl_kbd_controller_state(iter); } else if (iter->type == INPUT_DEVICE_SDL_GAMECONTROLLER) {