accuracy and speed adjustements

This commit is contained in:
HorizonCode 2021-06-25 21:18:47 +02:00
parent 1fe30194b0
commit 687021688f
1 changed files with 3 additions and 3 deletions

View File

@ -2174,9 +2174,9 @@ int pp_std(ezpp_t ez) {
ez->pp = (float)(
pow(
pow(ez->speed_pp, 0.95f) +
pow(ez->acc_pp, 0.95f),
1.19f
pow(ez->speed_pp, 0.97f) +
pow(ez->acc_pp, 0.99f),
1.15f
) * final_multiplier);
ez->accuracy_percent = accuracy * 100.0f;