remove unecessary comment

This commit is contained in:
unknown 2020-01-28 07:13:28 +08:00
parent 7f538cfa74
commit d9e21a572f
1 changed files with 0 additions and 1 deletions

View File

@ -72,7 +72,6 @@ public virtual void Update(Playfield playfield)
/// </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);
}
}