mirror of
https://github.com/osukey/osukey.git
synced 2025-05-11 16:47:19 +09:00
Move xmldoc to method
This commit is contained in:
parent
19507e107e
commit
0bc68a7018
@ -679,7 +679,6 @@ namespace osu.Game.Screens.Play
|
|||||||
if (!Configuration.ShowResults)
|
if (!Configuration.ShowResults)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Asynchronously run score preparation operations (database import, online submission etc.).
|
|
||||||
prepareScoreForDisplayTask ??= Task.Run(prepareScoreForResults);
|
prepareScoreForDisplayTask ??= Task.Run(prepareScoreForResults);
|
||||||
|
|
||||||
bool storyboardHasOutro = DimmableStoryboard.ContentDisplayed && !DimmableStoryboard.HasStoryboardEnded.Value;
|
bool storyboardHasOutro = DimmableStoryboard.ContentDisplayed && !DimmableStoryboard.HasStoryboardEnded.Value;
|
||||||
@ -695,6 +694,10 @@ namespace osu.Game.Screens.Play
|
|||||||
progressToResults(true);
|
progressToResults(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Asynchronously run score preparation operations (database import, online submission etc.).
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>The final score.</returns>
|
||||||
private async Task<ScoreInfo> prepareScoreForResults()
|
private async Task<ScoreInfo> prepareScoreForResults()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
Loading…
x
Reference in New Issue
Block a user