fix base call

This commit is contained in:
Glenn Maynard
2006-11-21 20:03:28 +00:00
parent 7ef6009567
commit ce86b65827
4 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -87,7 +87,7 @@ Desc: Animates the 1p/2p selection
************************************/
void ScreenEz2SelectPlayer::Update( float fDeltaTime )
{
Screen::Update( fDeltaTime );
ScreenWithMenuElements::Update( fDeltaTime );
}
/************************************
@@ -101,7 +101,7 @@ void ScreenEz2SelectPlayer::Input( const InputEventPlus &input )
if( IsTransitioning() )
return;
Screen::Input( input ); // default input handler
ScreenWithMenuElements::Input( input ); // default input handler
}
/************************************
@@ -111,7 +111,7 @@ Desc: Handles Screen Messages and changes
************************************/
void ScreenEz2SelectPlayer::HandleScreenMessage( const ScreenMessage SM )
{
Screen::HandleScreenMessage( SM );
ScreenWithMenuElements::HandleScreenMessage( SM );
if( SM == SM_MenuTimer )
{