remove noop

This commit is contained in:
Glenn Maynard
2006-11-09 04:45:44 +00:00
parent 28724eb156
commit c48e4fe8bc
4 changed files with 0 additions and 10 deletions
-1
View File
@@ -15,7 +15,6 @@ public:
virtual void SetScore( int iNewScore ) {}
virtual void OnLoadSong() {};
virtual void OnSongEnded() {};
/* Notification of a tap note judgment. This *is* called for
* the head of hold notes. */
virtual void OnJudgment( TapNoteScore score ) {};
-4
View File
@@ -83,10 +83,6 @@ void ScoreDisplayLifeTime::OnLoadSong()
PlayGainLoss( GAIN_LIFE_COMMAND_NAME, pEntry->fGainSeconds );
}
void ScoreDisplayLifeTime::OnSongEnded()
{
}
void ScoreDisplayLifeTime::OnJudgment( TapNoteScore tns )
{
if( STATSMAN->m_CurStageStats.m_player[m_pPlayerState->m_PlayerNumber].bFailedEarlier )
-1
View File
@@ -17,7 +17,6 @@ public:
virtual void Update( float fDelta );
virtual void OnLoadSong();
virtual void OnSongEnded();
virtual void OnJudgment( TapNoteScore score );
virtual void OnJudgment( HoldNoteScore score, TapNoteScore tscore );
-4
View File
@@ -2453,10 +2453,6 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM )
{
if( pi->m_pLifeMeter )
pi->m_pLifeMeter->OnSongEnded();
if( pi->m_pPrimaryScoreDisplay )
pi->m_pPrimaryScoreDisplay->OnSongEnded();
if( pi->m_pSecondaryScoreDisplay )
pi->m_pSecondaryScoreDisplay->OnSongEnded();
}
}