diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 77c2e8efb..618b16118 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -11835,7 +11835,7 @@ MAIN_LOOP_RESTART: { if (g_networkMode != NET_DEDICATED_SERVER) { -// CONTROL_ProcessBinds(); + CONTROL_ProcessBinds(); P_GetInput(myconnectindex); } diff --git a/polymer/eduke32/source/jmact/control.c b/polymer/eduke32/source/jmact/control.c index 55595c404..93f70c0f8 100644 --- a/polymer/eduke32/source/jmact/control.c +++ b/polymer/eduke32/source/jmact/control.c @@ -789,8 +789,8 @@ static void CONTROL_GetFunctionInput(void) void CONTROL_GetInput(ControlInfo *info) { CONTROL_PollDevices(info); + CONTROL_GetFunctionInput(); - CONTROL_ProcessBinds(); } int32_t CONTROL_Startup(controltype which, int32_t(*TimeFunction)(void), int32_t ticspersecond)