Skip to content

Commit

Permalink
correct comment about setchordcohesion function/call
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Sep 25, 2017
1 parent 92047da commit fc238bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ScoreManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ void ScoreManager::RecalculateSSRs(LoadingWindow *ld) {
totalscorenotes += hs->GetTapNoteScore(TNS_Miss);

if (totalstepsnotes - totalscorenotes == 0)
hs->SetChordCohesion(1); // we are setting nochordcohesion to 1 here, functions should be renamed? -mina
hs->SetChordCohesion(1); // the set function isn't inverted but the get function is, this sets bnochordcohesion to 1
else
hs->SetChordCohesion(0);
}
return;
}
Expand Down

0 comments on commit fc238bc

Please sign in to comment.