Add logo sound case for transitioning to song select

This commit is contained in:
aitani9 2021-06-23 13:39:12 -07:00
parent a5f5bde2c0
commit c8022126dc

View File

@ -274,6 +274,10 @@ namespace osu.Game.Screens.Menu
case ButtonSystemState.Play:
buttonsPlay.First().Click();
return false;
// no sound should be played if the logo is clicked on while transitioning to song select
case ButtonSystemState.EnteringMode:
return false;
}
}