From fcc020dd98b9aaebe6ef42ae255c8b43382bc2ff Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 24 Oct 2002 05:15:47 +0000 Subject: [PATCH] remove unused parameter --- stepmania/src/Player.cpp | 4 ++-- stepmania/src/Player.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index df06357910..efc829646b 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -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" ); diff --git a/stepmania/src/Player.h b/stepmania/src/Player.h index 8a4c197fe6..7eafb89b84 100644 --- a/stepmania/src/Player.h +++ b/stepmania/src/Player.h @@ -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 );