Skip to content

Commit

Permalink
Fix missed nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Nov 3, 2022
1 parent bfa5d41 commit 993439d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Taiko/UI/TaikoMascotAnimation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public ManualMascotTextureAnimation(TaikoMascotAnimationState state)
[BackgroundDependencyLoader]
private void load(ISkinSource source)
{
ISkin skin = source.FindProvider(s => getAnimationFrame(s, state, 0) != null);
ISkin? skin = source.FindProvider(s => getAnimationFrame(s, state, 0) != null);

if (skin == null) return;

Expand Down

0 comments on commit 993439d

Please sign in to comment.