From 95697e488984be04b4ab03f239674bed18eb2fd7 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 13 Feb 2011 15:42:47 -0600 Subject: [PATCH] fix warnings --- src/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 0046374a98..fd3a45e715 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -3001,8 +3001,8 @@ void Player::HandleHoldCheckpoint( int iRow, int iNumHoldsHeldThisRow, int iNumH #endif // more warp hackery. -aj - if( iRow >= (unsigned)GAMESTATE->m_iWarpBeginRow && - iRow <= (unsigned)(GAMESTATE->m_iWarpBeginRow + BeatToNoteRow(GAMESTATE->m_fWarpLength)) ) + if( iRow >= GAMESTATE->m_iWarpBeginRow && + iRow <= (GAMESTATE->m_iWarpBeginRow + BeatToNoteRow(GAMESTATE->m_fWarpLength)) ) return; // don't accumulate combo if AutoPlay is on.