Skip to content

Commit

Permalink
formatting is the literal worst
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 5, 2020
1 parent 38d48f4 commit ac669d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,8 @@ Calc::SetCJMod(const vector<NoteInfo>& NoteInfo, vector<float> doot[])
float brop = CalcClamp(actual_jacks - 2.f, 0.5f, 1.f);
// explicitly detect broken chordstream type stuff so we can give
// more leeway to single note jacks
float brop_two_return_of_brop_electric_bropaloo = CalcClamp(2.f - definitely_not_jacks, 0.5f, 1.f);
float brop_two_return_of_brop_electric_bropaloo =
CalcClamp(2.f - definitely_not_jacks, 0.5f, 1.f);
doot[CJ][i] = CalcClamp(
brop * brop_two_return_of_brop_electric_bropaloo * sqrt(prop),
0.7f,
Expand Down Expand Up @@ -1711,15 +1712,14 @@ Calc::SetSequentialDownscalers(const vector<NoteInfo>& NoteInfo,
// then scaled against how many taps we ignored
float barf = (-0.1f + (dswap * 0.1f));
barf += (barf2 - 1.f);
if (debugmode)
std::cout << "barf " << barf << std::endl;
cv += barf;
cv *= barf2;
cv = CalcClamp(cv, 0.f, 1.f);
if (debugmode)
std::cout << "cv3 " << cv << std::endl;
yes_trills *= barf;
Expand Down

0 comments on commit ac669d6

Please sign in to comment.