remove unused "m_sprNonPresence". if additional graphics are needed, use the overlay/underlay layers
This commit is contained in:
@@ -330,14 +330,6 @@ void ScreenSelectMusic::Init()
|
|||||||
ActorUtil::LoadAllCommands( m_sprOptionsMessage, m_sName );
|
ActorUtil::LoadAllCommands( m_sprOptionsMessage, m_sName );
|
||||||
//this->AddChild( &m_sprOptionsMessage ); // we have to draw this manually over the top of transitions
|
//this->AddChild( &m_sprOptionsMessage ); // we have to draw this manually over the top of transitions
|
||||||
|
|
||||||
FOREACH_PlayerNumber( p )
|
|
||||||
{
|
|
||||||
m_sprNonPresence[p].SetName( ssprintf("NonPresenceP%d",p+1) );
|
|
||||||
m_sprNonPresence[p].Load( THEME->GetPathG(m_sName,ssprintf("nonpresence p%d",p+1)) );
|
|
||||||
SET_XY( m_sprNonPresence[p] );
|
|
||||||
this->AddChild( &m_sprNonPresence[p] );
|
|
||||||
}
|
|
||||||
|
|
||||||
m_bgOptionsOut.Load( THEME->GetPathB(m_sName,"options out") );
|
m_bgOptionsOut.Load( THEME->GetPathB(m_sName,"options out") );
|
||||||
// this->AddChild( &m_bgOptionsOut ); // drawn on top
|
// this->AddChild( &m_bgOptionsOut ); // drawn on top
|
||||||
m_bgNoOptionsOut.Load( THEME->GetPathB(m_sName,"no options out") );
|
m_bgNoOptionsOut.Load( THEME->GetPathB(m_sName,"no options out") );
|
||||||
@@ -410,13 +402,6 @@ void ScreenSelectMusic::TweenSongPartsOnScreen( bool Initial )
|
|||||||
ON_COMMAND( m_AutoGenIcon[p] );
|
ON_COMMAND( m_AutoGenIcon[p] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
|
||||||
FOREACH_PlayerNumber( p )
|
|
||||||
{
|
|
||||||
ON_COMMAND( m_sprNonPresence[p] );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScreenSelectMusic::TweenSongPartsOffScreen( bool Final )
|
void ScreenSelectMusic::TweenSongPartsOffScreen( bool Final )
|
||||||
@@ -443,13 +428,6 @@ void ScreenSelectMusic::TweenSongPartsOffScreen( bool Final )
|
|||||||
OFF_COMMAND( m_AutoGenIcon[p] );
|
OFF_COMMAND( m_AutoGenIcon[p] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
|
||||||
FOREACH_PlayerNumber( p )
|
|
||||||
{
|
|
||||||
OFF_COMMAND( m_sprNonPresence[p] );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScreenSelectMusic::TweenCoursePartsOnScreen( bool Initial )
|
void ScreenSelectMusic::TweenCoursePartsOnScreen( bool Initial )
|
||||||
|
|||||||
@@ -115,7 +115,6 @@ protected:
|
|||||||
BitmapText m_textTotalTime;
|
BitmapText m_textTotalTime;
|
||||||
OptionIconRow m_OptionIconRow[NUM_PLAYERS];
|
OptionIconRow m_OptionIconRow[NUM_PLAYERS];
|
||||||
Sprite m_sprMeterFrame[NUM_PLAYERS];
|
Sprite m_sprMeterFrame[NUM_PLAYERS];
|
||||||
Sprite m_sprNonPresence[NUM_PLAYERS];
|
|
||||||
DifficultyMeter m_DifficultyMeter[NUM_PLAYERS];
|
DifficultyMeter m_DifficultyMeter[NUM_PLAYERS];
|
||||||
MusicSortDisplay m_MusicSortDisplay;
|
MusicSortDisplay m_MusicSortDisplay;
|
||||||
Sprite m_sprHighScoreFrame[NUM_PLAYERS];
|
Sprite m_sprHighScoreFrame[NUM_PLAYERS];
|
||||||
|
|||||||
Reference in New Issue
Block a user