mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 04:42:58 +08:00
Fix ticks not being generated at the minimum tick distance
This commit is contained in:
parent
0ce8bcffe1
commit
71d79f0a39
@ -38,7 +38,7 @@ namespace osu.Game.Rulesets.Objects
|
||||
|
||||
for (var d = tickDistance; d <= length; d += tickDistance)
|
||||
{
|
||||
if (d > length - minDistanceFromEnd)
|
||||
if (d >= length - minDistanceFromEnd)
|
||||
break;
|
||||
|
||||
var pathProgress = d / length;
|
||||
|
Loading…
Reference in New Issue
Block a user