From 751caba3607199926fa6cec08daf3fdc4b059cca Mon Sep 17 00:00:00 2001 From: Kyzentun Keeslala Date: Fri, 2 Oct 2015 03:09:05 -0600 Subject: [PATCH] Why did I use >= originally? That makes no sense. --- src/NoteDataWithScoring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NoteDataWithScoring.cpp b/src/NoteDataWithScoring.cpp index c8ccdb07e0..7259b29a06 100644 --- a/src/NoteDataWithScoring.cpp +++ b/src/NoteDataWithScoring.cpp @@ -353,11 +353,11 @@ void NoteDataWithScoring::GetActualRadarValues(const NoteData &in, { if(curr_note->subType == TapNoteSubType_Hold) { - state.holds_held+= (curr_note->HoldResult.hns >= HNS_Held); + state.holds_held+= (curr_note->HoldResult.hns == HNS_Held); } else if(curr_note->subType == TapNoteSubType_Roll) { - state.rolls_held+= (curr_note->HoldResult.hns >= HNS_Held); + state.rolls_held+= (curr_note->HoldResult.hns == HNS_Held); } state.hold_ends.push_back( hold_status(state.curr_row + curr_note->iDuration,