From fc238bc642b819e8383f25b39b6c884c9a06ac58 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 25 Sep 2017 03:52:19 -0400 Subject: [PATCH] correct comment about setchordcohesion function/call --- src/ScoreManager.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ScoreManager.cpp b/src/ScoreManager.cpp index b3512b6a1a..52b8596c5c 100644 --- a/src/ScoreManager.cpp +++ b/src/ScoreManager.cpp @@ -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; }