From dccc07980a775b845b4e219d7beaecacb91875c7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 28 Feb 2003 08:47:27 +0000 Subject: [PATCH] Don't blank out song elements that don't exist. --- stepmania/src/Song.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 571331b816..72507ac24d 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -477,7 +477,7 @@ void Song::TidyUpData() // if( !HasBanner() ) { - m_sBannerFile = ""; +// m_sBannerFile = ""; // find an image with "banner" in the file name CStringArray arrayPossibleBanners; @@ -491,7 +491,7 @@ void Song::TidyUpData() if( !HasBackground() ) { - m_sBackgroundFile = ""; +// m_sBackgroundFile = ""; // find an image with "bg" or "background" in the file name CStringArray arrayPossibleBGs; @@ -509,7 +509,7 @@ void Song::TidyUpData() if( !HasCDTitle() ) { - m_sCDTitleFile = ""; +// m_sCDTitleFile = ""; // find an image with "cdtitle" in the file name CStringArray arrayPossibleCDTitles;