don't warn about missing scores files; it happens on every initial run

This commit is contained in:
Glenn Maynard
2003-12-03 05:35:28 +00:00
parent bf2e1730b3
commit 8271656c91
+3 -3
View File
@@ -407,7 +407,7 @@ void SongManager::ReadStepsMemCardDataFromFile( CString fn, int mc )
{
RageFile f(fn);
if (!f.IsOpen() || f.GetError() != 0)
WARN_AND_RETURN;
return; /* don't warn if it just doesn't exist */
int version;
if( !FileRead(f, version) )
@@ -502,7 +502,7 @@ void SongManager::ReadCategoryRankingsFromFile( CString fn )
{
RageFile f(fn);
if (!f.IsOpen() || f.GetError() != 0)
WARN_AND_RETURN;
return; /* don't warn if it just doesn't exist */
int version;
if( !FileRead(f, version) )
@@ -534,7 +534,7 @@ void SongManager::ReadCourseMemCardDataFromFile( CString fn, int mc )
{
RageFile f(fn);
if (!f.IsOpen() || f.GetError() != 0)
WARN_AND_RETURN;
return; /* don't warn if it just doesn't exist */
int version;
if( !FileRead(f, version) )