1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 09:02:55 +08:00

removed duplicate lines

This commit is contained in:
BananeVolante 2020-06-22 15:22:13 +02:00
parent 9dea96e5fd
commit 836386d03b

View File

@ -14,7 +14,7 @@ using osu.Framework.Graphics.Audio;
using osu.Game.Graphics;
using osuTK.Graphics;
using osu.Framework.Logging;
using SharpCompress.Common;
namespace osu.Game.Screens.Play
{
@ -43,7 +43,6 @@ namespace osu.Game.Screens.Play
{
Looping = true,
});
pauseLoop?.VolumeTo(0.0f);
pauseLoop?.Play();
}
}
@ -58,7 +57,7 @@ namespace osu.Game.Screens.Play
protected override void PopOut()
{
base.PopOut();
pauseLoop?.VolumeTo(0.0f);
pauseLoop.VolumeTo(0.0f);
}