rename a function

This commit is contained in:
Glenn Maynard
2003-01-27 23:10:44 +00:00
parent 724f3af240
commit 5aa7ebc1ac
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -272,7 +272,7 @@ Screen* ScreenManager::MakeNewScreen( CString sClassName )
DISPLAY->ResetStats(); DISPLAY->ResetStats();
/* This is a convenient time to clean up our song cache. */ /* This is a convenient time to clean up our song cache. */
SONGMAN->CleanCourses(); SONGMAN->CleanData();
return ret; return ret;
} }
+1 -1
View File
@@ -450,7 +450,7 @@ void SongManager::FreeCourses()
/* Called periodically to wipe out cached NoteData. This is called when we change /* Called periodically to wipe out cached NoteData. This is called when we change
* screens. */ * screens. */
void SongManager::CleanCourses() void SongManager::CleanData()
{ {
for( unsigned i=0; i<m_pSongs.size(); i++ ) for( unsigned i=0; i<m_pSongs.size(); i++ )
{ {
+1 -1
View File
@@ -49,7 +49,7 @@ public:
void InitCoursesFromDisk(); void InitCoursesFromDisk();
void FreeCourses(); void FreeCourses();
void CleanCourses(); void CleanData();