Revert async changes

This commit is contained in:
Dean Herbert
2018-08-31 07:04:40 +09:00
parent 247e1ee714
commit 03084aa04b
46 changed files with 120 additions and 157 deletions

View File

@ -454,9 +454,9 @@ namespace osu.Game.Overlays
}
[BackgroundDependencyLoader]
private async Task load(TextureStore textures)
private void load(TextureStore textures)
{
sprite.Texture = beatmap?.Background ?? await textures.GetAsync(@"Backgrounds/bg4");
sprite.Texture = beatmap?.Background ?? textures.Get(@"Backgrounds/bg4");
}
}