mirror of https://github.com/ppy/osu
Use int for total hits in OsuPerformanceCalculator.
This commit is contained in:
parent
b43e978156
commit
373aae0610
|
@ -204,7 +204,7 @@ private double computeAccuracyValue()
|
|||
return accuracyValue;
|
||||
}
|
||||
|
||||
private double totalHits => countGreat + countGood + countMeh + countMiss;
|
||||
private double totalSuccessfulHits => countGreat + countGood + countMeh;
|
||||
private int totalHits => countGreat + countGood + countMeh + countMiss;
|
||||
private int totalSuccessfulHits => countGreat + countGood + countMeh;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue