make RadarCategory enum and Lua names consistent

This commit is contained in:
Chris Danford
2005-12-24 20:18:56 +00:00
parent 035f20d234
commit 0b98adff15
14 changed files with 71 additions and 72 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ bool StepsUtil::CompareNotesPointersByRadarValues(const Steps* pSteps1, const St
float fScore1 = 0;
float fScore2 = 0;
fScore1 += pSteps1->GetRadarValues()[RADAR_NUM_TAPS_AND_HOLDS];
fScore2 += pSteps2->GetRadarValues()[RADAR_NUM_TAPS_AND_HOLDS];
fScore1 += pSteps1->GetRadarValues()[RadarCategory_TapsAndHolds];
fScore2 += pSteps2->GetRadarValues()[RadarCategory_TapsAndHolds];
return fScore1 < fScore2;
}