1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 03:30:03 +08:00

Merge pull request #1718 from peppy/fix-inspectcode-bug

Ignore bugged inspectcode inspection
This commit is contained in:
Dean Herbert
2017-12-21 23:51:35 +09:00
committed by GitHub
Unverified
@@ -93,6 +93,7 @@ namespace osu.Game.Rulesets.Osu.OsuDifficulty.Preprocessing
float approxFollowCircleRadius = (float)(slider.Radius * 3);
var computeVertex = new Action<double>(t =>
{
// ReSharper disable once PossibleInvalidOperationException (bugged in current r# version)
var diff = slider.PositionAt(t) - slider.LazyEndPosition.Value;
float dist = diff.Length;