unused now

This commit is contained in:
Glenn Maynard
2002-12-19 22:43:56 +00:00
parent b76d90cfd0
commit 0c07c7d8c3
2 changed files with 0 additions and 9 deletions
-8
View File
@@ -25,7 +25,6 @@ enum KeepAliveType // for use with the metric above
{
KEEP_ALIVE_TYPE_MAX = 0,
KEEP_ALIVE_TYPE_5TH,
KEEP_ALIVE_TYPE_HIDDEN, //disable drawing of the keep alive transition (for transitioning to the summary score screen)
};
@@ -44,11 +43,6 @@ TransitionKeepAlive::TransitionKeepAlive()
m_sprLogo.SetXY( CENTER_X, CENTER_Y );
}
void TransitionKeepAlive::SetHidden()
{
g_KeepAliveType = (KeepAliveType)KEEP_ALIVE_TYPE_HIDDEN;
}
void TransitionKeepAlive::Update( float fDeltaTime )
{
// hack: Smooth out the big hickups.
@@ -63,8 +57,6 @@ void TransitionKeepAlive::DrawPrimitives()
// draw keep alive graphic
switch( g_KeepAliveType )
{
case KEEP_ALIVE_TYPE_HIDDEN: //draw nothing
break; //for last transition (to final score summary screen)
case KEEP_ALIVE_TYPE_MAX:
{
float fPercentClosed = 1 - this->GetPercentageOpen();
-1
View File
@@ -28,7 +28,6 @@ public:
virtual void OpenWipingLeft( ScreenMessage send_when_done = SM_None );
virtual void CloseWipingRight(ScreenMessage send_when_done = SM_None );
virtual void CloseWipingLeft( ScreenMessage send_when_done = SM_None );
virtual void SetHidden();
protected:
Sprite m_sprLogo;