Volume should be 0 by default

This commit is contained in:
smoogipoo
2020-12-01 18:09:28 +09:00
parent 6b4a6c12c8
commit 2840405112
3 changed files with 4 additions and 3 deletions

View File

@ -479,7 +479,7 @@ namespace osu.Game.Rulesets.Objects.Legacy
/// </remarks>
public readonly bool IsLayered;
public LegacyHitSampleInfo([NotNull] string name, string? bank = null, int volume = 100, int customSampleBank = 0, bool isLayered = false)
public LegacyHitSampleInfo(string name, string? bank = null, int volume = 0, int customSampleBank = 0, bool isLayered = false)
: base(name, bank, customSampleBank >= 2 ? customSampleBank.ToString() : null, volume)
{
CustomSampleBank = customSampleBank;