mirror of
https://github.com/ppy/osu.git
synced 2025-03-05 16:43:04 +08:00
Display indices rather than one-based numbers
This commit is contained in:
parent
934a585b94
commit
dedd4561a1
@ -1 +1 @@
|
|||||||
Subproject commit 1242968326461ec1d7e1fb6877b12658d7e1644c
|
Subproject commit 3c76bce45762765b7268f8036da681a788f756b9
|
@ -158,9 +158,9 @@ namespace osu.Desktop.VisualTests.Tests
|
|||||||
base.OnNewBeat(beatIndex, timingPoint, effectPoint, amplitudes);
|
base.OnNewBeat(beatIndex, timingPoint, effectPoint, amplitudes);
|
||||||
|
|
||||||
timingPointCount.Value = timingPoints.Count;
|
timingPointCount.Value = timingPoints.Count;
|
||||||
currentTimingPoint.Value = timingPoints.IndexOf(timingPoint) + 1;
|
currentTimingPoint.Value = timingPoints.IndexOf(timingPoint);
|
||||||
beatCount.Value = calculateBeatCount(timingPoint);
|
beatCount.Value = calculateBeatCount(timingPoint);
|
||||||
currentBeat.Value = beatIndex + 1;
|
currentBeat.Value = beatIndex;
|
||||||
beatsPerMinute.Value = 60000 / timingPoint.BeatLength;
|
beatsPerMinute.Value = 60000 / timingPoint.BeatLength;
|
||||||
adjustedBeatLength.Value = timingPoint.BeatLength;
|
adjustedBeatLength.Value = timingPoint.BeatLength;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user