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

@ -5,6 +5,7 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using osu.Game.Utils;
namespace osu.Game.Audio
@ -45,7 +46,7 @@ namespace osu.Game.Audio
/// </summary>
public int Volume { get; }
public HitSampleInfo(string name, string? bank = null, string? suffix = null, int volume = 100)
public HitSampleInfo(string name, string? bank = null, string? suffix = null, int volume = 0)
{
Name = name;
Bank = bank;