1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Display indices rather than one-based numbers

This commit is contained in:
Thomas Müller 2017-07-09 19:41:36 +03:00
parent 934a585b94
commit dedd4561a1
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 1242968326461ec1d7e1fb6877b12658d7e1644c
Subproject commit 3c76bce45762765b7268f8036da681a788f756b9

View File

@ -158,9 +158,9 @@ namespace osu.Desktop.VisualTests.Tests
base.OnNewBeat(beatIndex, timingPoint, effectPoint, amplitudes);
timingPointCount.Value = timingPoints.Count;
currentTimingPoint.Value = timingPoints.IndexOf(timingPoint) + 1;
currentTimingPoint.Value = timingPoints.IndexOf(timingPoint);
beatCount.Value = calculateBeatCount(timingPoint);
currentBeat.Value = beatIndex + 1;
currentBeat.Value = beatIndex;
beatsPerMinute.Value = 60000 / timingPoint.BeatLength;
adjustedBeatLength.Value = timingPoint.BeatLength;