1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-22 22:17:46 +08:00

Remove unnecessary string literal

This commit is contained in:
iiSaLMaN 2019-08-24 09:30:43 +03:00
parent 94b5caf740
commit 0bcd323d17

View File

@ -225,7 +225,7 @@ namespace osu.Game.Skinning
if (sampleInfo is HitSampleInfo hsi)
// Try fallback to non-bank samples.
return Samples.Get($"{hsi.Name}");
return Samples.Get(hsi.Name);
return null;
}