1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 02:13:38 +08:00

Remove redundant default argument value

This commit is contained in:
Bartłomiej Dach
2020-06-14 18:39:41 +02:00
Unverified
parent dc5bb12fa8
commit 9907b4763b
+1 -1
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)