From 0d2b753d25e571c983c772b35c045e87a4e50ad9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 16 Jun 2005 03:22:53 +0000 Subject: [PATCH] logs --- stepmania/src/PlayerStageStats.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/PlayerStageStats.cpp b/stepmania/src/PlayerStageStats.cpp index 45714a30d3..7b21255b90 100644 --- a/stepmania/src/PlayerStageStats.cpp +++ b/stepmania/src/PlayerStageStats.cpp @@ -146,12 +146,14 @@ Grade PlayerStageStats::GetGrade() const { int iTapScoreValue = ScoreKeeperMAX2::TapNoteScoreToGradePoints( tns, bIsBeginner ); fActual += iTapNoteScores[tns] * iTapScoreValue; + LOG->Trace( "GetGrade actual: %i * %i", iTapNoteScores[tns], iTapScoreValue ); } FOREACH_HoldNoteScore( hns ) { int iHoldScoreValue = ScoreKeeperMAX2::HoldNoteScoreToGradePoints( hns, bIsBeginner ); fActual += iHoldNoteScores[hns] * iHoldScoreValue; + LOG->Trace( "GetGrade actual: %i * %i", iHoldNoteScores[hns], iHoldScoreValue ); } LOG->Trace( "GetGrade: fActual: %f, fPossible: %d", fActual, iPossibleGradePoints );