Skip to content

Commit

Permalink
update reliable with jitter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Sep 17, 2024
1 parent 92e74b2 commit ddd3d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reliable/reliable.c
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ void reliable_endpoint_update( struct reliable_endpoint_t * endpoint, double tim
{
if ( endpoint->rtt_history_buffer[i] >= 0.0f )
{
sum += endpoint->rtt_history_buffer[i];
sum += ( endpoint->rtt_history_buffer[i] - endpoint->rtt_min );
count++;
}
}
Expand Down

0 comments on commit ddd3d33

Please sign in to comment.