Flush keys when server data is parsed, fixes #633

This commit is contained in:
Larry Davis 2020-12-11 10:46:49 -08:00
parent bab977fa74
commit dc1353c67e
2 changed files with 14 additions and 10 deletions

View file

@ -829,6 +829,9 @@ CL_ParseServerData(void)
char *str;
int i;
/* Clear all key states */
In_FlushQueue();
Com_DPrintf("Serverdata packet received.\n");
/* wipe the client_state_t struct */

View file

@ -818,16 +818,6 @@ IN_Update(void)
sys_frame_time = Sys_Milliseconds();
}
/*
* Removes all pending events from SDLs queue.
*/
void
In_FlushQueue(void)
{
SDL_FlushEvents(SDL_FIRSTEVENT, SDL_LASTEVENT);
Key_MarkAllUp();
}
/*
* Move handling
*/
@ -977,6 +967,17 @@ IN_JoyAltSelectorUp(void)
joy_altselector_pressed = false;
}
/*
* Removes all pending events from SDLs queue.
*/
void
In_FlushQueue(void)
{
SDL_FlushEvents(SDL_FIRSTEVENT, SDL_LASTEVENT);
Key_MarkAllUp();
IN_JoyAltSelectorUp();
}
/* ------------------------------------------------------------------ */
static void IN_Haptic_Shutdown(void);