Fix compile

NoteData* --> const NoteData&
This commit is contained in:
Josh Allen
2006-07-16 16:10:00 +00:00
parent 48f173e985
commit b96481c589
+1 -1
View File
@@ -1186,7 +1186,7 @@ void ScreenGameplay::LoadNextSong()
{
Steps *pSteps = GAMESTATE->m_pCurSteps[ pi->GetStepsAndTrailIndex() ];
if( pSteps->GetDifficulty() == DIFFICULTY_BEGINNER )
m_BeginnerHelper.AddPlayer( pi->GetStepsAndTrailIndex(), &pi->m_pPlayer->m_NoteData );
m_BeginnerHelper.AddPlayer( pi->GetStepsAndTrailIndex(), pi->m_pPlayer->m_NoteData );
}
}