Post-merge fixes (and CodeFactor fixes)

This commit is contained in:
ColdVolcano
2017-04-24 22:48:25 -05:00
parent 630c556b80
commit 1df50adc3a
3 changed files with 8 additions and 8 deletions

View File

@ -72,19 +72,18 @@ namespace osu.Game.Screens.Menu
welcome = audio.Sample.Get(@"welcome");
seeya = audio.Sample.Get(@"seeya");
}
protected override void OnEntering(Screen last)
{
base.OnEntering(last);
if(menuVoice)
if (menuVoice)
welcome.Play();
Scheduler.AddDelayed(delegate
{
if(menuMusic)
if (menuMusic)
bgm.Start();
LoadComponentAsync(mainMenu = new MainMenu());