hide more

This commit is contained in:
Glenn Maynard
2005-08-12 03:10:53 +00:00
parent 2b1b57b81f
commit 095513c3d7
4 changed files with 28 additions and 24 deletions
+3 -1
View File
@@ -627,8 +627,10 @@ static HighScore MakeRandomHighScore( float fPercentDP )
hs.SetTapNoteScore( tns, rand() % 100 );
FOREACH_HoldNoteScore( hns )
hs.SetHoldNoteScore( hns, rand() % 100 );
RadarValues rv;
FOREACH_RadarCategory( rc )
hs.radarValues.m_Values.f[rc] = randomf( 0, 1 );
rv.m_Values.f[rc] = randomf( 0, 1 );
hs.SetRadarValues( rv );
return hs;
}