Fix missed nullability

This commit is contained in:
Dan Balasescu 2022-11-03 11:28:39 +09:00
parent bfa5d41d89
commit 993439d30b
1 changed files with 1 additions and 1 deletions

View File

@ -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;