Move the rest of song searching logic into SONGMAN.

This commit is contained in:
Glenn Maynard
2003-07-22 05:45:30 +00:00
parent fdd00f5dd4
commit 71b2199fb2
5 changed files with 40 additions and 50 deletions
+1 -1
View File
@@ -333,7 +333,7 @@ void UnlockSystem::UpdateSongs()
{
m_SongEntries[i].m_pSong = NULL;
m_SongEntries[i].m_pCourse = NULL;
m_SongEntries[i].m_pSong = SONGMAN->FindSong( "", m_SongEntries[i].m_sSongName );
m_SongEntries[i].m_pSong = SONGMAN->FindSong( m_SongEntries[i].m_sSongName );
if( m_SongEntries[i].m_pSong == NULL )
m_SongEntries[i].m_pCourse = SONGMAN->FindCourse( m_SongEntries[i].m_sSongName );
}