ScreenWithMenuElements -> ScreenWithMenuElementsSimple

This commit is contained in:
Glenn Maynard
2008-05-28 01:27:35 +00:00
parent 43daaf5a1f
commit e34d6d7195
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -13,7 +13,7 @@ REGISTER_SCREEN_CLASS( ScreenContinue );
void ScreenContinue::Init()
{
ScreenWithMenuElements::Init();
ScreenWithMenuElementsSimple::Init();
this->SubscribeToMessage( Message_PlayerJoined );
}
@@ -43,7 +43,7 @@ void ScreenContinue::BeginScreen()
}
}
ScreenWithMenuElements::BeginScreen();
ScreenWithMenuElementsSimple::BeginScreen();
}
void ScreenContinue::Input( const InputEventPlus &input )
@@ -76,7 +76,7 @@ void ScreenContinue::Input( const InputEventPlus &input )
}
}
ScreenWithMenuElements::Input( input );
ScreenWithMenuElementsSimple::Input( input );
}
void ScreenContinue::HandleScreenMessage( const ScreenMessage SM )
@@ -88,7 +88,7 @@ void ScreenContinue::HandleScreenMessage( const ScreenMessage SM )
return;
}
ScreenWithMenuElements::HandleScreenMessage( SM );
ScreenWithMenuElementsSimple::HandleScreenMessage( SM );
}
void ScreenContinue::HandleMessage( const Message &msg )
@@ -112,7 +112,7 @@ void ScreenContinue::HandleMessage( const Message &msg )
}
}
ScreenWithMenuElements::HandleMessage( msg );
ScreenWithMenuElementsSimple::HandleMessage( msg );
}
/*