fixes compiling of Player.cpp

This commit is contained in:
AJ Kelly
2010-02-13 22:33:43 -06:00
parent 4a92f73a49
commit 034cbc4d83
+1 -3
View File
@@ -2483,7 +2483,7 @@ void Player::UpdateJudgedRows()
void Player::FlashGhostRow( int iRow )
{
TapNoteScore lastTNS = NoteDataWithScoring::LastTapNoteWithResult( m_NoteData, iRow, pn ).result.tns;
TapNoteScore lastTNS = NoteDataWithScoring::LastTapNoteWithResult( m_NoteData, iRow ).result.tns;
const bool bBlind = (m_pPlayerState->m_PlayerOptions.GetCurrent().m_fBlind != 0);
const bool bBright = ( m_pPlayerStageStats && m_pPlayerStageStats->m_iCurCombo > int(BRIGHT_GHOST_COMBO_THRESHOLD) ) || bBlind;
@@ -2745,8 +2745,6 @@ void Player::HandleTapRowScore( unsigned row )
// Mines cannot be handled here.
if( tn.type == TapNote::empty || tn.type == TapNote::fake || tn.type == TapNote::mine )
continue;
if( tn.pn != PLAYER_INVALID && tn.pn != pn )
continue;
if( m_pPrimaryScoreKeeper )
m_pPrimaryScoreKeeper->HandleTapScore( tn );
if( m_pSecondaryScoreKeeper )