Use int for total hits in OsuPerformanceCalculator.

This commit is contained in:
Huo Yaoyuan 2020-05-18 17:45:32 +08:00
parent b43e978156
commit 373aae0610
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}