Radar branch: add Fakes wherever it made sense.

Need to check metrics, then ready to test.
This commit is contained in:
Jason Felds
2011-02-27 22:36:04 -05:00
parent ca83d063f8
commit 86f3bf7e79
9 changed files with 27 additions and 4 deletions
+1
View File
@@ -749,6 +749,7 @@ void NoteDataUtil::CalculateRadarValues( const NoteData &in, float fSongSeconds,
case RadarCategory_Hands: out[rc] = (float) in.GetNumHands(); break;
case RadarCategory_Rolls: out[rc] = (float) in.GetNumRolls(); break;
case RadarCategory_Lifts: out[rc] = (float) in.GetNumLifts(); break;
case RadarCategory_Fakes: out[rc] = (float) in.GetNumFakes(); break;
default: ASSERT(0);
}
}