diff --git a/osu.Game/Scoring/Legacy/LegacyScoreDecoder.cs b/osu.Game/Scoring/Legacy/LegacyScoreDecoder.cs
index 7bfe0308f7..7ac4f90c07 100644
--- a/osu.Game/Scoring/Legacy/LegacyScoreDecoder.cs
+++ b/osu.Game/Scoring/Legacy/LegacyScoreDecoder.cs
@@ -115,7 +115,7 @@ namespace osu.Game.Scoring.Legacy
}
}
- CalculateAccuracy(score.ScoreInfo);
+ PopulateAccuracy(score.ScoreInfo);
// before returning for database import, we must restore the database-sourced BeatmapInfo.
// if not, the clone operation in GetPlayableBeatmap will cause a dereference and subsequent database exception.
@@ -124,7 +124,14 @@ namespace osu.Game.Scoring.Legacy
return score;
}
- protected void CalculateAccuracy(ScoreInfo score)
+ ///
+ /// Populates the accuracy of a given from its contained statistics.
+ ///
+ ///
+ /// Legacy use only.
+ ///
+ /// The to populate.
+ public static void PopulateAccuracy(ScoreInfo score)
{
int countMiss = score.GetCountMiss() ?? 0;
int count50 = score.GetCount50() ?? 0;