clean up GRADE_ constant names to match GradeToString

This commit is contained in:
Chris Danford
2005-03-31 06:14:28 +00:00
parent d39fa29164
commit 8cac261c52
12 changed files with 63 additions and 61 deletions
+1 -1
View File
@@ -587,7 +587,7 @@ static HighScore MakeRandomHighScore()
{
HighScore hs;
hs.sName = "FAKE";
hs.grade = (Grade)SCALE( rand()%5, 0, 4, GRADE_TIER_01, GRADE_TIER_05 );
hs.grade = (Grade)SCALE( rand()%5, 0, 4, GRADE_TIER01, GRADE_TIER05 );
hs.iScore = rand()%100*1000;
hs.fPercentDP = randomf( 0.5f, 1.0f );
hs.fSurviveSeconds = randomf( 30.0f, 100.0f );