Give different variables different names. I don't know how that compiled in the first place...

This commit is contained in:
Ben Anderson
2005-06-08 01:45:21 +00:00
parent 8fef7be08d
commit 111028f9b4
+2 -2
View File
@@ -695,9 +695,9 @@ void MusicWheel::BuildWheelItemDatas( vector<WheelItemData> &arrayWheelItemDatas
CString sLastSection = "";
int iSectionColorIndex = 0;
for( unsigned c=0; c<apCourses.size(); c++ ) // foreach course
for( unsigned i=0; i<apCourses.size(); i++ ) // foreach course
{
Course* pCourse = apCourses[c];
Course* pCourse = apCourses[i];
// if unlocks are on, make sure it is unlocked
if ( UNLOCKMAN->CourseIsLocked(pCourse) )