From 5fd893291d6273655a76f5d842e058a8ac21a947 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 22 Jul 2007 07:53:06 +0000 Subject: [PATCH] Outdent loop a bit. --- stepmania/src/Player.cpp | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 9003aea374..7a789d1367 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -2263,20 +2263,19 @@ void Player::CrossedRows( int iFirstRowCrossed, int iLastRowCrossed, const RageT RandomizeNotes( r ); // check to see if there's a note at the crossed row - if( m_pPlayerState->m_PlayerController != PC_HUMAN ) + if( m_pPlayerState->m_PlayerController == PC_HUMAN ) + continue; + for( int t=0; tm_PlayerController == PC_AUTOPLAY ) { - Step( t, r, now, false, false ); - if( m_pPlayerState->m_PlayerController == PC_AUTOPLAY ) - { - STATSMAN->m_CurStageStats.m_bUsedAutoplay = true; - if( m_pPlayerStageStats ) - m_pPlayerStageStats->m_bDisqualified = true; - } + STATSMAN->m_CurStageStats.m_bUsedAutoplay = true; + if( m_pPlayerStageStats ) + m_pPlayerStageStats->m_bDisqualified = true; } } }