1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Increase delay for changing background on returning to main menu

This commit is contained in:
Dean Herbert 2022-11-04 17:19:03 +09:00
parent 566738494f
commit 2b934e0bea

View File

@ -95,7 +95,7 @@ namespace osu.Game.Screens.Backgrounds
nextTask = Scheduler.AddDelayed(() =>
{
LoadComponentAsync(nextBackground, displayNext, cancellationTokenSource.Token);
}, 100);
}, 500);
return true;
}