From 87d129b1a033589c52efa3cbf339a12cf83e14b6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 30 Mar 2003 20:18:46 +0000 Subject: [PATCH] hopefully fix an extra2 crash --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index fa15123402..d2e97fea43 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -439,7 +439,7 @@ ScreenGameplay::ScreenGameplay( bool bDemonstration ) this->AddChild( &m_Back ); - if( GAMESTATE->IsExtraStage() ) // only load if we're going to use it + if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() ) // only load if we're going to use it { m_textSurviveTime.LoadFromFont( THEME->GetPathTo("Fonts","ScreenGameplay survive time") ); m_textSurviveTime.EnableShadow( false );