Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion osu.Game/Screens/SelectV2/SongSelect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,9 @@ protected override void LogoArriving(OsuLogo logo, bool resuming)

logo.Action = () =>
{
SelectAndRun(Beatmap.Value.BeatmapInfo, OnStart);
// use carousel's current selection instead of global beatmap to avoid debounce issues
var beatmapToPlay = carousel.CurrentGroupedBeatmap?.Beatmap ?? Beatmap.Value.BeatmapInfo;
SelectAndRun(beatmapToPlay, OnStart);
return false;
};
}
Expand Down