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:
parent
14d87e49c7
commit
f38b21110f
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user