mirror of
https://github.com/gopher64/gopher64.git
synced 2026-07-11 01:25:20 +02:00
Increase ping sample size from 10 to 12 (#1022)
This commit is contained in:
+2
-2
@@ -428,8 +428,8 @@ fn update_ping(
|
||||
.as_millis();
|
||||
let ping = (now - message.timestamp) / 2; // calculate one-way latency
|
||||
pings.push(ping);
|
||||
if pings.len() > 10 {
|
||||
// once we have 10 samples, remove the highest 2 and return the next highest
|
||||
if pings.len() > 12 {
|
||||
// once we have at least 12 samples, remove the highest 2 and return the next highest
|
||||
pings.sort();
|
||||
pings.truncate(pings.len() - 2);
|
||||
let ping = *pings.last().unwrap();
|
||||
|
||||
Reference in New Issue
Block a user