mirror of
https://github.com/ppy/osu
synced 2025-01-05 13:50:03 +00:00
Fix insufficient leniency when querying sample points
This commit is contained in:
parent
59a1915451
commit
c89081589c
@ -28,9 +28,12 @@ namespace osu.Game.Beatmaps.Formats
|
||||
public const int EARLY_VERSION_TIMING_OFFSET = 24;
|
||||
|
||||
/// <summary>
|
||||
/// A small adjustment to the start time of control points to account for rounding/precision errors.
|
||||
/// A small adjustment to the start time of sample control points to account for rounding/precision errors.
|
||||
/// </summary>
|
||||
private const double control_point_leniency = 1;
|
||||
/// <remarks>
|
||||
/// Compare: https://github.com/peppy/osu-stable-reference/blob/master/osu!/GameplayElements/HitObjects/HitObject.cs#L319
|
||||
/// </remarks>
|
||||
private const double control_point_leniency = 5;
|
||||
|
||||
internal static RulesetStore? RulesetStore;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user