From 3d1a6e9f05394dcbfef13617421f3cc22f1813b3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 2 Feb 2004 22:32:05 +0000 Subject: [PATCH] fix -random- tag --- stepmania/src/Background.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index 130631abc0..e4705f1c31 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -347,7 +347,7 @@ void Background::LoadFromSong( const Song* pSong ) bool bIsAlreadyLoaded = m_BGAnimations.find(sBGName) != m_BGAnimations.end(); - if( !bIsAlreadyLoaded ) + if( sBGName.CompareNoCase("-random-") && !bIsAlreadyLoaded ) { BGAnimation *pTempBGA = CreateSongBGA( sBGName ); if( pTempBGA )