1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

remove unnecessary ComputeTimeRange override

This commit is contained in:
Hivie 2024-02-23 14:22:56 +01:00
parent 1cbc2f07ab
commit 14b0c41937

View File

@ -26,12 +26,5 @@ namespace osu.Game.Rulesets.Taiko.Edit
ShowSpeedChanges.BindValueChanged(showChanges => VisualisationMethod = showChanges.NewValue ? ScrollVisualisationMethod.Overlapping : ScrollVisualisationMethod.Constant, true);
}
protected override double ComputeTimeRange()
{
// Adjust when we're using constant algorithm to not be sluggish.
double multiplier = ShowSpeedChanges.Value ? 1 : 4;
return base.ComputeTimeRange() / multiplier;
}
}
}