From df4170b9396695b02c1efb02e0c0c6bf9096073d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sun, 27 Feb 2022 23:17:04 +0900 Subject: [PATCH] Display star ratings in tournament mode using two decimal places --- osu.Game.Tournament/Components/SongBar.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Tournament/Components/SongBar.cs b/osu.Game.Tournament/Components/SongBar.cs index a7f0d58145..a45582a7c0 100644 --- a/osu.Game.Tournament/Components/SongBar.cs +++ b/osu.Game.Tournament/Components/SongBar.cs @@ -186,7 +186,7 @@ namespace osu.Game.Tournament.Components Children = new Drawable[] { new DiffPiece(stats), - new DiffPiece(("Star Rating", $"{beatmap.StarRating:0.#}{srExtra}")) + new DiffPiece(("Star Rating", $"{beatmap.StarRating:0.##}{srExtra}")) } }, new FillFlowContainer