AutoActor m_sprExplanation

This commit is contained in:
Glenn Maynard
2003-11-05 19:35:57 +00:00
parent e3246d609c
commit 5e8ebeda43
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -116,9 +116,9 @@ ScreenSelectMaster::ScreenSelectMaster( CString sClassName ) : ScreenSelect( sCl
m_sprMore[page].Load( THEME->GetPathToG( ssprintf("%s more page%d",m_sName.c_str(), page+1) ) );
this->AddChild( &m_sprMore[page] );
m_sprExplanation[page].SetName( ssprintf("ExplanationPage%d",page+1) );
m_sprExplanation[page].Load( THEME->GetPathToG( ssprintf("%s explanation page%d",m_sName.c_str(), page+1) ) );
this->AddChild( &m_sprExplanation[page] );
m_sprExplanation[page]->SetName( ssprintf("ExplanationPage%d",page+1) );
this->AddChild( m_sprExplanation[page] );
}
+1 -1
View File
@@ -51,7 +51,7 @@ protected:
float GetCursorX( PlayerNumber pn, int iPartIndex );
float GetCursorY( PlayerNumber pn, int iPartIndex );
Sprite m_sprExplanation[NUM_PAGES];
AutoActor m_sprExplanation[NUM_PAGES];
Sprite m_sprMore[NUM_PAGES];
#define MAX_ICON_PARTS 3
AutoActor m_sprIcon[MAX_ICON_PARTS][MAX_CHOICES];