1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 16:32:54 +08:00

Fix RoomInspector covers.

This commit is contained in:
DrabWeb 2017-07-11 01:18:16 -03:00
parent fbe414d780
commit c449491c04

View File

@ -539,8 +539,8 @@ namespace osu.Game.Screens.Multiplayer
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
if (set.OnlineInfo?.Covers?.Card2x != null)
Texture = textures.Get(set.OnlineInfo.Covers.Card2x);
if (set.OnlineInfo?.Covers?.Cover2x != null)
Texture = textures.Get(set.OnlineInfo.Covers.Cover2x);
}
}
}