From a6b000a81be40b6bf205a78e05d26af08344d31d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Oct 2006 07:13:41 +0000 Subject: [PATCH] don't think this was meant to be merged out --- stepmania/src/SongManager.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/stepmania/src/SongManager.cpp b/stepmania/src/SongManager.cpp index 2ba7ee53aa..562350ac41 100644 --- a/stepmania/src/SongManager.cpp +++ b/stepmania/src/SongManager.cpp @@ -693,20 +693,6 @@ void SongManager::InitCoursesFromDisk( LoadingWindow *ld ) FOREACH_CONST( RString, vsCourseGroupNames, sCourseGroup ) // for each dir in /Courses/ { - -#if defined(ITG) - if( !ALLOW_ITG_NAMES_IN_ADDITIONAL_FOLDERS ) - { - // Don't load any folders containing "Marathon" so that they don't conflict with the official courses. - if( *sDir == ADDITIONAL_COURSES_DIR && BeginsWith(*sCourseGroup, "Marathon") ) - continue; - if( *sDir == ADDITIONAL_COURSES_DIR && BeginsWith(*sCourseGroup, "Survival") ) - continue; - if( *sDir == ADDITIONAL_COURSES_DIR && BeginsWith(*sCourseGroup, "Workout") ) - continue; - } -#endif - // Find all CRS files in this group directory vector vsCoursePaths; GetDirListing( *sDir + *sCourseGroup + "/*.crs", vsCoursePaths, false, true );