mirror of https://github.com/ppy/osu
Cap effective miss count to total hits
This commit is contained in:
parent
50be7fb077
commit
c1a40388ff
|
@ -87,6 +87,7 @@ protected override PerformanceAttributes CreatePerformanceAttributes(ScoreInfo s
|
|||
}
|
||||
|
||||
effectiveMissCount = Math.Max(countMiss, effectiveMissCount);
|
||||
effectiveMissCount = Math.Min(totalHits, effectiveMissCount);
|
||||
|
||||
double multiplier = PERFORMANCE_BASE_MULTIPLIER;
|
||||
|
||||
|
|
Loading…
Reference in New Issue