From cf812b2e802b84698e9c1c172c0caf0ba9f82cef Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 12 Aug 2019 21:33:47 +0200 Subject: [PATCH] Revert "Prevent input_driver_poll from being called more than once per" This reverts commit 15513c77525a0296323b30b91f7f0080c10df083. --- retroarch.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/retroarch.c b/retroarch.c index 00e99719be..07230a90ac 100644 --- a/retroarch.c +++ b/retroarch.c @@ -10643,11 +10643,6 @@ static void input_driver_poll(void) settings_t *settings = configuration_settings; uint8_t max_users = (uint8_t)input_driver_max_users; input_bits_t current_inputs[MAX_USERS]; - static unsigned prev_frame_count = 0; - - if (video_driver_frame_count == prev_frame_count) - return; - prev_frame_count = video_driver_frame_count; current_input->poll(current_input_data);