From 7c04c919b9daa9eb8ac0011233a28efd0844c274 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 3 Apr 2011 01:26:36 -0500 Subject: [PATCH] small comment/cleanup --- src/Player.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 92aeee5f09..6e620bdec2 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -2562,7 +2562,7 @@ void Player::UpdateTapNotesMissedOlderThan( float fMissIfOlderThanSeconds ) if( !NeedsTapJudging(tn) ) continue; - + // Ignore all notes that are skipped via WARPS. if( GAMESTATE->m_pCurSong->m_Timing.IsWarpAtRow( iter.Row() ) ) continue; @@ -2598,7 +2598,7 @@ void Player::UpdateJudgedRows() { int iRow = iter.Row(); - // if row is within a warp section, ignore it. -aj + // If row is within a warp section, ignore it. -aj if( GAMESTATE->m_pCurSong->m_Timing.IsWarpAtRow(iRow) ) continue; @@ -2933,7 +2933,7 @@ void Player::HandleTapRowScore( unsigned row ) bNoCheating = false; #endif - // more warp hackery. -aj + // Warp hackery. -aj if( GAMESTATE->m_pCurSong->m_Timing.IsWarpAtRow( row ) ) return; @@ -3037,7 +3037,7 @@ void Player::HandleHoldCheckpoint( int iRow, int iNumHoldsHeldThisRow, int iNumH bNoCheating = false; #endif - // more warp hackery. -aj + // More warp hackery. -aj if( GAMESTATE->m_pCurSong->m_Timing.IsWarpAtRow( iRow ) ) return;