mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
Fix nullref.
This commit is contained in:
parent
907236e475
commit
c7fa79b027
@ -201,7 +201,7 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
computeYPositions();
|
||||
|
||||
if (selectedGroup.State == BeatmapGroupState.Hidden)
|
||||
if (selectedGroup == null || selectedGroup.State == BeatmapGroupState.Hidden)
|
||||
SelectNext();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user