remove unused parameter
This commit is contained in:
@@ -453,7 +453,7 @@ void Player::Step( int col )
|
||||
}
|
||||
}
|
||||
if( bRowDestroyed )
|
||||
OnRowDestroyed( col, iIndexOverlappingNote );
|
||||
OnRowDestroyed( iIndexOverlappingNote );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -461,7 +461,7 @@ void Player::Step( int col )
|
||||
m_GrayArrowRow.Step( col );
|
||||
}
|
||||
|
||||
void Player::OnRowDestroyed( int col, int iIndexThatWasSteppedOn )
|
||||
void Player::OnRowDestroyed( int iIndexThatWasSteppedOn )
|
||||
{
|
||||
LOG->Trace( "Player::OnRowDestroyed" );
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@ public:
|
||||
|
||||
protected:
|
||||
int UpdateTapNotesMissedOlderThan( float fMissIfOlderThanThisBeat );
|
||||
void OnRowDestroyed( int col, int iStepIndex );
|
||||
void OnRowDestroyed( int iStepIndex );
|
||||
void HandleNoteScore( TapNoteScore score, int iNumTapsInRow );
|
||||
void HandleNoteScore( HoldNoteScore score, TapNoteScore TapNoteScore );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user