Skip to content

Commit

Permalink
Merge branch 'next' into 226-prep
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelT1 committed Jul 11, 2020
2 parents d9483da + 3668c37 commit 7780894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/d_clisrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -5496,7 +5496,7 @@ void NetUpdate(void)
// update node latency values so we can take an average later.
for (i = 0; i < MAXPLAYERS; i++)
if (playeringame[i] && playernode[i] != UINT8_MAX)
realpingtable[i] += GetLag(playernode[i]) * (1000.00f / TICRATE);
realpingtable[i] += G_TicsToMilliseconds(GetLag(playernode[i]));
pingmeasurecount++;
}

Expand Down

0 comments on commit 7780894

Please sign in to comment.