Always poll input even if core doesn't have any input.

This commit is contained in:
Alcaro 2016-02-23 16:28:32 +01:00
parent eeccb63c4e
commit 949cbcac07

View File

@ -324,6 +324,10 @@ bool core_ctl(enum core_ctl_state state, void *data)
break;
}
core.retro_run();
if (core_poll_type == POLL_TYPE_LATE && !core_input_polled)
{
input_poll();
}
break;
case CORE_CTL_SET_CBS:
return retro_set_default_callbacks(data);