1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

Add missing parenthesis to comment

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2023-08-03 08:57:43 +09:00 committed by GitHub
parent 14d87e49c7
commit f38b21110f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
minFrameTimes.Add(instance.Score.Replay.Frames.Min(f => f.Time));
}
// Remove any outliers (only need to worry about removing those lower than the mean since we will take a Min() after.
// Remove any outliers (only need to worry about removing those lower than the mean since we will take a Min() after).
double mean = minFrameTimes.Average();
minFrameTimes.RemoveAll(t => mean - t > 1000);