diff --git a/stepmania/src/CombinedLifeMeter.h b/stepmania/src/CombinedLifeMeter.h index 5ec4ceb49d..dceab2d7b1 100644 --- a/stepmania/src/CombinedLifeMeter.h +++ b/stepmania/src/CombinedLifeMeter.h @@ -13,7 +13,6 @@ public: virtual ~CombinedLifeMeter() {}; virtual void OnLoadSong() {}; - virtual void OnSongEnded() {}; /* Change life after receiving a tap note grade. This *is* called for * the head of hold notes. */ virtual void ChangeLife( PlayerNumber pn, TapNoteScore tns ) = 0; diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index b5b738e90b..58d3c52d4c 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -2459,8 +2459,6 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM ) pi->m_pSecondaryScoreDisplay->OnSongEnded(); } } - if( m_pCombinedLifeMeter ) - m_pCombinedLifeMeter->OnSongEnded(); GAMESTATE->m_bLoadingNextSong = true; MESSAGEMAN->Broadcast( "BeforeLoadingNextCourseSong" );