1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 13:22:55 +08:00

Merge pull request #1492 from peppy/performance-improvements

Fix some startup stutters
This commit is contained in:
Dean Herbert 2017-11-13 14:04:31 +09:00 committed by GitHub
commit 615984ca9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -57,11 +57,6 @@ namespace osu.Game.Graphics
private void load(FontStore store) private void load(FontStore store)
{ {
this.store = store; this.store = store;
}
protected override void LoadComplete()
{
base.LoadComplete();
updateTexture(); updateTexture();
} }

View File

@ -118,7 +118,7 @@ namespace osu.Game.Screens
} }
if ((logo = lastOsu?.logo) == null) if ((logo = lastOsu?.logo) == null)
AddInternal(logo = new OsuLogo()); LoadComponentAsync(logo = new OsuLogo(), AddInternal);
base.OnEntering(last); base.OnEntering(last);