mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Updated preload condition to handle special case
This commit is contained in:
@ -414,7 +414,7 @@ namespace osu.Game.Screens.Select
|
||||
lastIndex = ~lastIndex;
|
||||
|
||||
// Add the first panel of the last visible beatmap group to preload its data.
|
||||
if (panels[lastIndex - 1] is BeatmapSetHeader)
|
||||
if (lastIndex != 0 && panels[lastIndex - 1] is BeatmapSetHeader)
|
||||
lastIndex++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user