Fixed multiple critical bugs and changed allSamples to a normal Dictionary for faster access

This commit is contained in:
FreezyLemon
2017-12-08 09:41:13 +01:00
parent 40e750f309
commit 61a6a2919e
2 changed files with 7 additions and 3 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Game.Audio
public SampleChannel GetChannel(SampleManager manager)
{
var channel = manager.Get($"{Bank}-{Name}");
var channel = manager.Get($"Gameplay/{Bank}-{Name}");
channel.AddAdjustment(AdjustableProperty.Volume, new BindableDouble(Volume / 100.0));
return channel;