mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-03 08:51:08 +00:00
Flush keys when server data is parsed, fixes #633
This commit is contained in:
parent
bab977fa74
commit
dc1353c67e
2 changed files with 14 additions and 10 deletions
|
@ -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 */
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue