Why did I use >= originally? That makes no sense.

This commit is contained in:
Kyzentun Keeslala
2015-10-02 03:09:05 -06:00
parent 429d4dbce2
commit 751caba360
+2 -2
View File
@@ -353,11 +353,11 @@ void NoteDataWithScoring::GetActualRadarValues(const NoteData &in,
{ {
if(curr_note->subType == TapNoteSubType_Hold) 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) 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( state.hold_ends.push_back(
hold_status(state.curr_row + curr_note->iDuration, hold_status(state.curr_row + curr_note->iDuration,