1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 01:30:05 +08:00

Set beatLength inline

This commit is contained in:
Dean Herbert
2020-07-18 12:03:49 +09:00
Unverified
parent 8147e67f53
commit 2f16b448ea
@@ -20,8 +20,11 @@ namespace osu.Game.Beatmaps.ControlPoints
public static readonly TimingControlPoint DEFAULT = new TimingControlPoint
{
BeatLength = default_beat_length,
BeatLengthBindable = { Disabled = true },
BeatLengthBindable =
{
Value = default_beat_length,
Disabled = true
},
TimeSignatureBindable = { Disabled = true }
};