Keep track of played and passed songs separately; it's too much

of a hassle to try to derive one from the other.
This commit is contained in:
Glenn Maynard
2003-02-24 02:43:05 +00:00
parent fff1449239
commit 788ac6a09d
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -45,6 +45,7 @@ void StageStats::operator+=( const StageStats& other )
fRadarActual[p][r] += other.fRadarActual[p][r];
}
fSecondsBeforeFail[p] += other.fSecondsBeforeFail[p];
iSongsPlayed[p] += other.iSongsPlayed[p];
iSongsPassed[p] += other.iSongsPassed[p];
}
}