mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 08:02:55 +08:00
Add missing return to PlayerLoader
was being a bit too eager previously
This commit is contained in:
parent
742cd5db91
commit
6ea22cc6c7
@ -109,7 +109,10 @@ namespace osu.Game.Screens.Play
|
|||||||
private void pushWhenLoaded()
|
private void pushWhenLoaded()
|
||||||
{
|
{
|
||||||
if (!player.IsLoaded)
|
if (!player.IsLoaded)
|
||||||
|
{
|
||||||
Schedule(pushWhenLoaded);
|
Schedule(pushWhenLoaded);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
contentOut();
|
contentOut();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user