Skip to content

Commit

Permalink
Fix weird local variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 11, 2024
1 parent 322df72 commit f8ac54d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Screens/Select/BeatmapCarousel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private void loadNewRoot()

private int visibleSetsCount;

public BeatmapCarousel(FilterCriteria initialCriterial)
public BeatmapCarousel(FilterCriteria initialCriteria)
{
root = new CarouselRoot(this);
InternalChild = new Container
Expand All @@ -239,7 +239,7 @@ public BeatmapCarousel(FilterCriteria initialCriterial)
}
};

activeCriteria = initialCriterial;
activeCriteria = initialCriteria;
}

[BackgroundDependencyLoader]
Expand Down

0 comments on commit f8ac54d

Please sign in to comment.