Allow StatisticItem's name param to be nullable

This commit is contained in:
naoei
2022-08-14 14:51:35 -04:00
parent 7cbe2fa522
commit 18ce784ae0
4 changed files with 4 additions and 4 deletions

View File

@ -316,7 +316,7 @@ namespace osu.Game.Rulesets.Osu
{
Columns = new[]
{
new StatisticItem(string.Empty, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
new StatisticItem(null, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
{
new AverageHitError(timedHitEvents),
new UnstableRate(timedHitEvents)