From 008f4029395fc54874532847116aa8911ae6d1fb Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 12 Aug 2004 06:34:17 +0000 Subject: [PATCH] don't force Songs that specified BGAnimations to switch to the static background on the last note beat --- stepmania/src/Background.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index f882212215..61e5960d7f 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -361,12 +361,11 @@ void Background::LoadFromSong( const Song* pSong ) else // pSong doesn't have an animation plan { LoadFromRandom( pSong->m_fFirstBeat, pSong->m_fLastBeat, pSong->m_Timing ); + + // end showing the static song background + m_aBGChanges.push_back( BackgroundChange(pSong->m_fLastBeat,STATIC_BACKGROUND) ); } - - // end showing the static song background - m_aBGChanges.push_back( BackgroundChange(pSong->m_fLastBeat,STATIC_BACKGROUND) ); - // sort segments SortBackgroundChangesArray( m_aBGChanges );