From af664d1af0ba9876aaff013f91bdc9539c2f2c9d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 2 May 2007 00:09:16 +0000 Subject: [PATCH] don't load commands in BeginScreen --- stepmania/src/ScreenRanking.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenRanking.cpp b/stepmania/src/ScreenRanking.cpp index 8106e8b2ee..3e0bc59c7a 100644 --- a/stepmania/src/ScreenRanking.cpp +++ b/stepmania/src/ScreenRanking.cpp @@ -119,11 +119,12 @@ void ScreenRanking::Init() m_textStepsType.LoadFromFont( THEME->GetPathF(m_sName,"steps type") ); m_textStepsType.SetShadowLength( 0 ); this->AddChild( &m_textStepsType ); + LOAD_ALL_COMMANDS( m_textStepsType ); } void ScreenRanking::BeginScreen() { - LOAD_ALL_COMMANDS_AND_SET_XY( m_textStepsType ); + SET_XY( m_textStepsType ); m_iNextPageToShow = 0;