1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

remove unecessary comment

This commit is contained in:
unknown 2020-01-28 07:13:28 +08:00
parent 7f538cfa74
commit d9e21a572f

View File

@ -72,7 +72,6 @@ namespace osu.Game.Rulesets.Mods
/// </summary>
/// <param name="amount">The amount of adjustment to apply (from 0..1).</param>
private void applyAdjustment(double amount) =>
// SpeedChange.Value = 1 + (FinalRate.Value - 1) * Math.Clamp(amount, 0, 1);
SpeedChange.Value = InitialRate.Value + (FinalRate.Value - InitialRate.Value) * Math.Clamp(amount, 0, 1);
}
}