Mark format strings as verbatim.

This commit is contained in:
Lucas A
2021-08-16 12:46:41 +02:00
parent 4b4c1448ea
commit 7bebbf9f74
3 changed files with 9 additions and 9 deletions

View File

@ -67,8 +67,8 @@ namespace osu.Game.Overlays.BeatmapSet
length.TooltipText = BeatmapsetsStrings.ShowStatsTotalLength(TimeSpan.FromMilliseconds(beatmap.Length).ToFormattedDuration());
length.Value = TimeSpan.FromMilliseconds(beatmap.Length).ToFormattedDuration();
circleCount.Value = beatmap.OnlineInfo.CircleCount.ToLocalisableString("N0");
sliderCount.Value = beatmap.OnlineInfo.SliderCount.ToLocalisableString("N0");
circleCount.Value = beatmap.OnlineInfo.CircleCount.ToLocalisableString(@"N0");
sliderCount.Value = beatmap.OnlineInfo.SliderCount.ToLocalisableString(@"N0");
}
}