Remove skin ctor param from `LegacyCatchComboCounter`

No longer used since 004798d61d.
This commit is contained in:
Bartłomiej Dach 2022-02-01 21:41:18 +01:00
parent 75101b1105
commit e042f29ee3
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ public override Drawable GetDrawableComponent(ISkinComponent component)
case CatchSkinComponents.CatchComboCounter:
if (providesComboCounter)
return new LegacyCatchComboCounter(Skin);
return new LegacyCatchComboCounter();
return null;

View File

@ -19,7 +19,7 @@ public class LegacyCatchComboCounter : CompositeDrawable, ICatchComboCounter
private readonly LegacyRollingCounter explosion;
public LegacyCatchComboCounter(ISkin skin)
public LegacyCatchComboCounter()
{
AutoSizeAxes = Axes.Both;