1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Fix base implementation of ComputeTotalScore

This commit is contained in:
Dan Balasescu 2023-05-23 15:59:24 +09:00
parent e1feeded12
commit 62d504af92

View File

@ -297,13 +297,9 @@ namespace osu.Game.Rulesets.Scoring
protected virtual double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
{
return
(int)Math.Round
((
700000 * comboProgress +
300000 * Math.Pow(Accuracy.Value, 10) * accuracyProgress +
bonusPortion
) * scoreMultiplier);
return 700000 * comboProgress +
300000 * Math.Pow(Accuracy.Value, 10) * accuracyProgress +
bonusPortion;
}
/// <summary>