don't warn about missing files during compatibility loads

This commit is contained in:
Glenn Maynard
2004-02-11 21:12:05 +00:00
parent a7b2a73889
commit b75dd3f4be
+6
View File
@@ -471,6 +471,8 @@ void Profile::LoadSongScoresFromDirSM390a12( CString sDir )
ASSERT( pProfile );
CString fn = sDir + SM_390A12_SONG_SCORES_DAT;
if( !IsAFile(fn) )
return;
RageFile f;
if( !f.Open(fn, RageFile::READ) )
@@ -593,6 +595,8 @@ void Profile::LoadCategoryScoresFromDirSM390a12( CString sDir )
ASSERT( pProfile );
CString fn = sDir + SM_390A12_CATEGORY_SCORES_DAT;
if( !IsAFile(fn) )
return;
RageFile f;
if( !f.Open(fn, RageFile::READ) )
@@ -648,6 +652,8 @@ void Profile::LoadCourseScoresFromDirSM390a12( CString sDir )
ASSERT( pProfile );
CString fn = sDir + SM_390A12_COURSE_SCORES_DAT;
if( !IsAFile(fn) )
return;
RageFile f;
if( !f.Open(fn, RageFile::READ) )