Make sure exiting editor doesn't unpause the music

This commit is contained in:
Oskar Solecki 2019-07-09 12:53:40 +02:00 committed by GitHub
parent 2546f647be
commit 3472979d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ public override void OnEntering(IScreen last)
public override bool OnExiting(IScreen next)
{
Background.FadeColour(Color4.White, 500);
Beatmap.Value.Track?.Stop();
return base.OnExiting(next);
}