1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:13:22 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Dean Herbert
2630144bd5
Merge 338a4fb4c8 into be05f2a1c2 2024-12-03 16:58:59 +09:00
Dean Herbert
338a4fb4c8
Remove fallback logic when custom sample set is specified 2024-11-13 16:51:50 +09:00

View File

@ -84,10 +84,12 @@ namespace osu.Game.Audio
{
if (!string.IsNullOrEmpty(Suffix))
yield return $"Gameplay/{Bank}-{Name}{Suffix}";
else
{
yield return $"Gameplay/{Bank}-{Name}";
yield return $"Gameplay/{Bank}-{Name}";
yield return $"Gameplay/{Name}";
yield return $"Gameplay/{Name}";
}
}
}