Volume should be 0 by default

This commit is contained in:
smoogipoo
2020-12-01 18:09:28 +09:00
parent dda4d76d72
commit 17560aeeea
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(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;