Skip to content

Commit

Permalink
Fix reappearance of noterow 0 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Feb 15, 2019
1 parent e5b94ac commit efd7c11
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,10 @@ Player::Init(const RString& sType,
->m_iColsPerPlayer;
++i) {
m_vpHoldJudgment[i] = NULL;
lastHoldHeadsSeconds[i] = 0;
// set this reasonably negative because if we don't, the first row of
// the song doesn't get judged
// and also it gets changed back to a realistic number after a hold is hit -poco
lastHoldHeadsSeconds[i] = -1000.f;
}

if (HasVisibleParts()) {
Expand Down

0 comments on commit efd7c11

Please sign in to comment.