replace SongManager::GetSongFromSteps with use of song pointer

This commit is contained in:
Devin J. Pohly
2013-01-20 19:51:59 -05:00
parent afaa382b84
commit 8815da5f1f
5 changed files with 10 additions and 31 deletions
+1 -1
View File
@@ -1243,7 +1243,7 @@ void BMSSongLoader::AddToSong()
bool BMSLoader::LoadNoteDataFromSimfile( const RString & cachePath, Steps & out )
{
Song *pSong = SONGMAN->GetSongFromSteps( &out );
Song *pSong = out.m_pSong;
// before doing anything else, load the chart first!
BMSChart chart;