1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Remove redundant default argument value

This commit is contained in:
Bartłomiej Dach 2020-06-14 18:39:41 +02:00
parent dc5bb12fa8
commit 9907b4763b

View File

@ -48,7 +48,7 @@ namespace osu.Game.Rulesets.Mods
// for preview purpose at song select. eventually we'll want to be able to update every frame.
FinalRate.BindValueChanged(val => applyAdjustment(1), true);
AdjustPitch.BindValueChanged(updatePitchAdjustment, false);
AdjustPitch.BindValueChanged(updatePitchAdjustment);
}
public void ApplyToTrack(Track track)