1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 06:23:37 +08:00

Merge pull request #22047 from Feodor0090/wcd-length-fix

Fix `WaveformComparisonDisplay` does not take into account start time of control points
This commit is contained in:
Bartłomiej Dach
2023-01-08 20:36:35 +01:00
committed by GitHub
Unverified
@@ -151,7 +151,7 @@ namespace osu.Game.Screens.Edit.Timing
if (!displayLocked.Value)
{
float trackLength = (float)beatmap.Value.Track.Length;
int totalBeatsAvailable = (int)(trackLength / timingPoint.BeatLength);
int totalBeatsAvailable = (int)((trackLength - timingPoint.Time) / timingPoint.BeatLength);
Scheduler.AddOnce(showFromBeat, (int)(e.MousePosition.X / DrawWidth * totalBeatsAvailable));
}