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
@@ -309,7 +309,7 @@ void ScreenEz2SelectMusic::Input( const InputEventPlus &input )
m_soundButtonPress.Play();
}
LastInputTime = RageTimer::GetTimeSinceStartFast();
Screen::Input( input );
ScreenWithMenuElements::Input( input );
}
void ScreenEz2SelectMusic::UpdateOptions(PlayerNumber pn, int nosound)
@@ -370,7 +370,7 @@ void ScreenEz2SelectMusic::UpdateOptions(PlayerNumber pn, int nosound)
void ScreenEz2SelectMusic::HandleScreenMessage( const ScreenMessage SM )
{
Screen::HandleScreenMessage( SM );
ScreenWithMenuElements::HandleScreenMessage( SM );
if( SM == SM_GoToNextScreen )
{
@@ -507,7 +507,7 @@ void ScreenEz2SelectMusic::Update( float fDeltaTime )
StartTransitioningScreen( SM_GoToNextScreen );
}
Screen::Update( fDeltaTime );
ScreenWithMenuElements::Update( fDeltaTime );
}
void ScreenEz2SelectMusic::EasierDifficulty( PlayerNumber pn )
+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 )
{
+2 -2
View File
@@ -164,7 +164,7 @@ void ScreenSelectCharacter::Input( const InputEventPlus &input )
if( IsTransitioning() )
return;
Screen::Input( input ); // default input handler
ScreenWithMenuElements::Input( input ); // default input handler
}
void ScreenSelectCharacter::HandleScreenMessage( const ScreenMessage SM )
@@ -181,7 +181,7 @@ void ScreenSelectCharacter::HandleScreenMessage( const ScreenMessage SM )
}
else
{
Screen::HandleScreenMessage( SM );
ScreenWithMenuElements::HandleScreenMessage( SM );
}
}
+2 -2
View File
@@ -132,7 +132,7 @@ void ScreenSelectGroup::Input( const InputEventPlus &input )
if( IsTransitioning() )
return;
Screen::Input( input ); // default input handler
ScreenWithMenuElements::Input( input ); // default input handler
}
void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
@@ -142,7 +142,7 @@ void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
StartTransitioningScreen( SM_GoToNextScreen );
return;
}
Screen::HandleScreenMessage( SM );
ScreenWithMenuElements::HandleScreenMessage( SM );
}
void ScreenSelectGroup::AfterChange()