fix "can't hit taps on same line as mines"

move life deltas to prefs
separate life delta for stepping on a mine
This commit is contained in:
Chris Danford
2003-11-11 07:36:28 +00:00
parent 460dd1ca49
commit 29c9770315
12 changed files with 209 additions and 85 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ Grade StageStats::GetGrade( PlayerNumber pn )
float Possible = 0, Actual = 0;
int i;
for( i = TNS_MISS; i < NUM_TAP_NOTE_SCORES; ++i )
for( i = 0; i < NUM_TAP_NOTE_SCORES; ++i )
{
Actual += iTapNoteScores[pn][i] * TapScoreValues[i];
Possible += iTapNoteScores[pn][i] * TapScoreValues[TNS_MARVELOUS];