1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 13:32:54 +08:00

Fix results screen accuracy circle not showing correctly for failed S with no flair

This commit is contained in:
Joseph Madamba 2024-03-06 20:08:46 -08:00
parent 56caf19350
commit c36232bc02

View File

@ -194,11 +194,11 @@ namespace osu.Game.Screens.Ranking.Expanded.Accuracy
rankText = new RankText(score.Rank)
};
if (withFlair)
{
if (isFailedSDueToMisses)
AddInternal(failedSRankText = new RankText(ScoreRank.S));
if (withFlair)
{
var applauseSamples = new List<string> { applauseSampleName };
if (score.Rank >= ScoreRank.B)
// when rank is B or higher, play legacy applause sample on legacy skins.
@ -326,8 +326,8 @@ namespace osu.Game.Screens.Ranking.Expanded.Accuracy
{
rankText.Appear();
if (!withFlair) return;
if (withFlair)
{
Schedule(() =>
{
isTicking = false;
@ -346,6 +346,7 @@ namespace osu.Game.Screens.Ranking.Expanded.Accuracy
});
}
}
}
if (isFailedSDueToMisses)
{