1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-18 02:55:36 +08:00

Remove no longer working combo counter hide code

This commit is contained in:
Salman Ahmed 2021-05-18 12:37:36 +03:00
parent 08ee1e4853
commit e5b6ad10bd

View File

@ -22,16 +22,6 @@ namespace osu.Game.Rulesets.Catch.Skinning.Legacy
public override Drawable GetDrawableComponent(ISkinComponent component)
{
if (component is HUDSkinComponent hudComponent)
{
switch (hudComponent.Component)
{
case HUDSkinComponents.ComboCounter:
// catch may provide its own combo counter; hide the default.
return providesComboCounter ? Drawable.Empty() : null;
}
}
if (!(component is CatchSkinComponent catchSkinComponent))
return null;