"m_pCurNotes" -> "m_pCurSteps"

This commit is contained in:
Chris Danford
2004-05-24 06:12:17 +00:00
parent ba93ee8469
commit b05d25ab24
23 changed files with 80 additions and 80 deletions
+2 -2
View File
@@ -94,14 +94,14 @@ int DifficultyList::GetCurrentRowIndex( PlayerNumber pn ) const
{
const Row &row = m_Rows[i];
if( GAMESTATE->m_pCurNotes[pn] == NULL )
if( GAMESTATE->m_pCurSteps[pn] == NULL )
{
if( row.m_dc == GAMESTATE->m_PreferredDifficulty[pn] )
return i;
}
else
{
if( GAMESTATE->m_pCurNotes[pn] == row.m_Steps )
if( GAMESTATE->m_pCurSteps[pn] == row.m_Steps )
return i;
}
}