1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 23:12:54 +08:00

Fix one more new inspection in EAP 2025

This commit is contained in:
Dean Herbert 2025-01-20 15:00:35 +09:00
parent b6ce72b6d9
commit 525e16ad1d
No known key found for this signature in database

View File

@ -33,7 +33,7 @@ namespace osu.Game.Skinning
public ISample? GetSample(ISampleInfo sampleInfo)
{
foreach (string? lookup in sampleInfo.LookupNames)
foreach (string lookup in sampleInfo.LookupNames)
{
ISample? sample = samples.Get(lookup);
if (sample != null)