Fix back-to-front conditional in taiko processor

Would be weird to degrade a score due to *no* misses wouldn't it?
This commit is contained in:
Bartłomiej Dach 2024-01-22 19:57:12 +01:00
parent cb8ec48717
commit 20ed7e13e3
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public override ScoreRank RankFromScore(double accuracy, IReadOnlyDictionary<Hit
{
case ScoreRank.S:
case ScoreRank.X:
if (results.GetValueOrDefault(HitResult.Miss) == 0)
if (results.GetValueOrDefault(HitResult.Miss) > 0)
rank = ScoreRank.A;
break;
}