1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 17:32:54 +08:00

Remove upper limit for pooling

This commit is contained in:
Dean Herbert 2022-11-15 12:05:38 +09:00
parent 308ed1abd1
commit 489dca79a1

View File

@ -52,7 +52,7 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
private double floatingAverage;
private readonly DrawablePool<JudgementLine> judgementLinePool = new DrawablePool<JudgementLine>(50, 100);
private readonly DrawablePool<JudgementLine> judgementLinePool = new DrawablePool<JudgementLine>(50);
private SpriteIcon arrow = null!;
private UprightAspectMaintainingContainer labelEarly = null!;