From 2844703b606ad08e272862760caffb3c5e34b9a4 Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Sat, 7 Sep 2013 17:30:52 -0400 Subject: [PATCH] Adjust indentation No-op. --- src/Player.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 68ce8ec4aa..ce1cbe77f7 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -2967,24 +2967,24 @@ void Player::CrossedRows( int iLastRowCrossed, const RageTimer &now ) default: break; } - // check to see if there's a note at the crossed row - if( m_pPlayerState->m_PlayerController != PC_HUMAN ) + // check to see if there's a note at the crossed row + if( m_pPlayerState->m_PlayerController != PC_HUMAN ) + { + if (tn.type != TapNote::empty && + tn.type != TapNote::fake && + tn.type != TapNote::autoKeysound && + tn.result.tns == TNS_None && + this->m_Timing->IsJudgableAtRow(iRow) ) { - if (tn.type != TapNote::empty && - tn.type != TapNote::fake && - tn.type != TapNote::autoKeysound && - tn.result.tns == TNS_None && - this->m_Timing->IsJudgableAtRow(iRow) ) + Step( iTrack, iRow, now, false, false ); + if( m_pPlayerState->m_PlayerController == PC_AUTOPLAY ) { - Step( iTrack, iRow, now, false, false ); - if( m_pPlayerState->m_PlayerController == PC_AUTOPLAY ) - { - if( m_pPlayerStageStats ) - m_pPlayerStageStats->m_bDisqualified = true; - } + if( m_pPlayerStageStats ) + m_pPlayerStageStats->m_bDisqualified = true; } } - + } + // TODO: Can we remove the iLastSeenRow logic and the // autokeysound for loop, since the iterator in this loop will // already be iterating over all of the tracks?