Fixed variable error in SongManager.cpp that was not allowing a clean compile (renamed var I to J, is all). Also fixed error that Judgement.* & HoldJudgement.* were not included..are now

This commit is contained in:
Kevin Slaughter
2003-02-18 09:19:38 +00:00
parent f7428d7d58
commit 3aabd48dfb
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -117,11 +117,11 @@ void ScreenPlayerOptions::ImportOptions()
// highlight currently selected skin
m_iSelectedOption[p][PO_NOTE_SKIN] = -1;
for( unsigned i=0; i<m_OptionRowData[PO_NOTE_SKIN].iNumOptions; i++ )
for( unsigned j=0; j<m_OptionRowData[PO_NOTE_SKIN].iNumOptions; j++ )
{
if( 0==stricmp(m_OptionRowData[PO_NOTE_SKIN].szOptionsText[i], NOTESKIN->GetCurNoteSkinName((PlayerNumber)p)) )
if( 0==stricmp(m_OptionRowData[PO_NOTE_SKIN].szOptionsText[j], NOTESKIN->GetCurNoteSkinName((PlayerNumber)p)) )
{
m_iSelectedOption[p][PO_NOTE_SKIN] = i;
m_iSelectedOption[p][PO_NOTE_SKIN] = j;
break;
}
}