From 1b937f7c1ee311d53d004a28f54debc3ce02495b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 12 Jul 2005 06:56:09 +0000 Subject: [PATCH] call base --- stepmania/src/ScreenEvaluation.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/ScreenEvaluation.cpp b/stepmania/src/ScreenEvaluation.cpp index 51918864d7..cb46878d87 100644 --- a/stepmania/src/ScreenEvaluation.cpp +++ b/stepmania/src/ScreenEvaluation.cpp @@ -1369,6 +1369,8 @@ void ScreenEvaluation::HandleScreenMessage( const ScreenMessage SM ) if( m_sndPassFail.IsPlaying() ) m_sndPassFail.Stop(); + + return; } else if( SM == SM_PlayCheer ) { @@ -1396,6 +1398,8 @@ void ScreenEvaluation::HandleScreenMessage( const ScreenMessage SM ) m_textScore[p].SetText( ssprintf("%*.0i", NUM_SCORE_DIGITS, STATSMAN->m_CurStageStats.m_player[p].iScore) ); } } + + ScreenWithMenuElements::HandleScreenMessage( SM ); } void ScreenEvaluation::MenuLeft( PlayerNumber pn )