Always store standardised score when populating ScoreInfo

This commit is contained in:
Bartłomiej Dach 2020-11-10 08:27:59 +01:00
parent d7c30f9b42
commit 109abc0e29
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ protected override void Dispose(bool isDisposing)
/// </summary>
public virtual void PopulateScore(ScoreInfo score)
{
score.TotalScore = (long)Math.Round(TotalScore.Value);
score.TotalScore = (long)Math.Round(GetStandardisedScore());
score.Combo = Combo.Value;
score.MaxCombo = HighestCombo.Value;
score.Accuracy = Math.Round(Accuracy.Value, 4);