Skip to content

Commit

Permalink
murder bad acc scores a little more than before
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 5, 2020
1 parent 91f83d9 commit 5b1f875
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ cv(const unordered_set<int>& input)
inline float
downscale_low_accuracy_scores(float f, float sg)
{
return sg >= 0.93f ? f : min(max(f / sqrt(1.f + (0.93f - sg)), 0.f), 100.f);
return sg >= 0.93f
? f
: min(max(f / pow(1.f + (0.93f - sg), 0.75f), 0.f), 100.f);
}

inline void
Expand Down

0 comments on commit 5b1f875

Please sign in to comment.