Check additional song folders for extra stage information.

This commit is contained in:
Steve Checkoway
2006-08-07 03:11:32 +00:00
parent 105973317b
commit 559e2c80fa
+5 -1
View File
@@ -1100,7 +1100,11 @@ bool SongManager::GetExtraStageInfoFromCourse( bool bExtra2, RString sPreferredG
/* Couldn't find course in DWI path or alternative song folders */
if( !DoesFileExist(sCoursePath) )
return false;
{
sCoursePath = ADDITIONAL_SONGS_DIR + sCourseSuffix;
if( !DoesFileExist(sCoursePath) )
return false;
}
Course course;
CourseLoaderCRS::LoadFromCRSFile( sCoursePath, course );