1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 10:45:36 +08:00
This commit is contained in:
Dean Herbert 2024-12-03 23:25:09 +09:00 committed by GitHub
commit e4aaff1696
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,12 +84,14 @@ namespace osu.Game.Audio
{ {
if (!string.IsNullOrEmpty(Suffix)) if (!string.IsNullOrEmpty(Suffix))
yield return $"Gameplay/{Bank}-{Name}{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}";
} }
} }
}
/// <summary> /// <summary>
/// Creates a new <see cref="HitSampleInfo"/> with overridden values. /// Creates a new <see cref="HitSampleInfo"/> with overridden values.