Fix InvalidOperationException when exiting a map at the end

This commit is contained in:
Christine Chen
2021-05-07 20:59:20 -04:00
parent 495eb04e2f
commit 8c564a69ed
2 changed files with 14 additions and 0 deletions

View File

@ -542,7 +542,11 @@ namespace osu.Game.Screens.Play
// if the score is ready for display but results screen has not been pushed yet (e.g. storyboard is still playing beyond gameplay), then transition to results screen instead of exiting.
if (prepareScoreForDisplayTask != null)
{
completionProgressDelegate?.Cancel();
completionProgressDelegate = null;
updateCompletionState(true);
}
}
this.Exit();