1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Use 0 length

This commit is contained in:
smoogipoo 2020-04-29 14:27:21 +09:00
parent 0c95d11fdb
commit 4f332ace14

View File

@ -53,7 +53,7 @@ namespace osu.Game.Rulesets.Mania.UI
private readonly Bindable<double> configTimeRange = new BindableDouble();
// Stores the current speed adjustment active in gameplay.
private readonly Track speedAdjustmentTrack = new TrackVirtual(1000);
private readonly Track speedAdjustmentTrack = new TrackVirtual(0);
public DrawableManiaRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
: base(ruleset, beatmap, mods)