From f38b21110f0e60a1667f3f2cb7c21fa5936b6122 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 3 Aug 2023 08:57:43 +0900 Subject: [PATCH] Add missing parenthesis to comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartłomiej Dach --- .../OnlinePlay/Multiplayer/Spectate/MultiSpectatorScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/OnlinePlay/Multiplayer/Spectate/MultiSpectatorScreen.cs b/osu.Game/Screens/OnlinePlay/Multiplayer/Spectate/MultiSpectatorScreen.cs index bb1a139cf7..66524f66ae 100644 --- a/osu.Game/Screens/OnlinePlay/Multiplayer/Spectate/MultiSpectatorScreen.cs +++ b/osu.Game/Screens/OnlinePlay/Multiplayer/Spectate/MultiSpectatorScreen.cs @@ -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);