From 92f067dbd2a49d556c77fc851efb5d037b39baea Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 19 Mar 2005 06:58:54 +0000 Subject: [PATCH] fix banner cache being preloaded when it shouldn't --- stepmania/src/Song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 672943dd58..6e9b92e7d2 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -281,7 +281,7 @@ bool Song::LoadFromSongDir( CString sDir ) } /* Load the cached banners, if it's not loaded already. */ - if( m_bHasBanner ) + if( PREFSMAN->m_iBannerCache == PrefsManager::BNCACHE_LOW_RES_PRELOAD && m_bHasBanner ) BANNERCACHE->LoadBanner( GetBannerPath() ); /* Add AutoGen pointers. (These aren't cached.) */