1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 09:42:54 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Dean Herbert
62c6e688d0
Merge 338a4fb4c8 into ce8e4120b7 2024-12-02 19:24:10 -06: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}";
}
}
}