Reduce the length of the fadeout animation

This commit is contained in:
Dean Herbert 2018-05-31 17:14:04 +09:00
parent 9df173b339
commit c161d82474
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ protected override void LogoArriving(OsuLogo logo, bool resuming)
protected override void LogoSuspending(OsuLogo logo)
{
base.LogoSuspending(logo);
logo.FadeOut(logo.Alpha * 1000);
logo.FadeOut(logo.Alpha * 400);
}
private OsuScreen loadScreen;