mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Display indices rather than one-based numbers
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user