diff --git a/stepmania/src/PaneDisplay.cpp b/stepmania/src/PaneDisplay.cpp index 7f145ea537..441ed8486a 100644 --- a/stepmania/src/PaneDisplay.cpp +++ b/stepmania/src/PaneDisplay.cpp @@ -120,11 +120,6 @@ void PaneDisplay::Load( const CString &sType, PlayerNumber pn ) m_ContentsFrame.SetXY( SHIFT_X(m_PlayerNumber), SHIFT_Y(m_PlayerNumber) ); this->AddChild( &m_ContentsFrame ); - m_sprPaneOver.Load( THEME->GetPathG(sType,ssprintf("over p%i", pn+1)) ); - m_sprPaneOver->SetName( "Over" ); - ActorUtil::OnCommand( m_sprPaneOver, sType ); - this->AddChild( m_sprPaneOver ); - for( unsigned i = 0; i < NUM_PANE_CONTENTS; ++i ) { COMMAND( m_textContents[i], "LoseFocus" ); diff --git a/stepmania/src/PaneDisplay.h b/stepmania/src/PaneDisplay.h index b8d5d96fc6..a9d17810f9 100644 --- a/stepmania/src/PaneDisplay.h +++ b/stepmania/src/PaneDisplay.h @@ -64,7 +64,6 @@ private: SortOrder m_SortOrder; AutoActor m_sprPaneUnder; - AutoActor m_sprPaneOver; BitmapText m_textContents[NUM_PANE_CONTENTS]; AutoActor m_Labels[NUM_PANE_CONTENTS];