Move CONTROL_ProcessBinds() to CONTROL_GetInput(). I don't think this breaks anything; if it does, revert it!

git-svn-id: https://svn.eduke32.com/eduke32@3981 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2013-08-06 23:51:25 +00:00
parent 17ba063736
commit c06e4262da
2 changed files with 2 additions and 2 deletions

View file

@ -11844,7 +11844,7 @@ MAIN_LOOP_RESTART:
{
if (g_networkMode != NET_DEDICATED_SERVER)
{
CONTROL_ProcessBinds();
// CONTROL_ProcessBinds();
P_GetInput(myconnectindex);
}

View file

@ -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)