mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 02:42:20 +00:00
Merge branch 'menu-unresponsiveness-fix' into 'next'
Fix rare but possible menu/console unresponsiveness bug (Resolves #700) Closes #700 See merge request STJr/SRB2!1677
This commit is contained in:
commit
06b5c9d5f4
1 changed files with 1 additions and 1 deletions
|
@ -1517,7 +1517,7 @@ void NetUpdate(void)
|
|||
|
||||
nowtime /= NEWTICRATERATIO;
|
||||
|
||||
if (nowtime > resptime)
|
||||
if (nowtime != resptime)
|
||||
{
|
||||
resptime = nowtime;
|
||||
#ifdef HAVE_THREADS
|
||||
|
|
Loading…
Reference in a new issue