logs
This commit is contained in:
@@ -146,12 +146,14 @@ Grade PlayerStageStats::GetGrade() const
|
|||||||
{
|
{
|
||||||
int iTapScoreValue = ScoreKeeperMAX2::TapNoteScoreToGradePoints( tns, bIsBeginner );
|
int iTapScoreValue = ScoreKeeperMAX2::TapNoteScoreToGradePoints( tns, bIsBeginner );
|
||||||
fActual += iTapNoteScores[tns] * iTapScoreValue;
|
fActual += iTapNoteScores[tns] * iTapScoreValue;
|
||||||
|
LOG->Trace( "GetGrade actual: %i * %i", iTapNoteScores[tns], iTapScoreValue );
|
||||||
}
|
}
|
||||||
|
|
||||||
FOREACH_HoldNoteScore( hns )
|
FOREACH_HoldNoteScore( hns )
|
||||||
{
|
{
|
||||||
int iHoldScoreValue = ScoreKeeperMAX2::HoldNoteScoreToGradePoints( hns, bIsBeginner );
|
int iHoldScoreValue = ScoreKeeperMAX2::HoldNoteScoreToGradePoints( hns, bIsBeginner );
|
||||||
fActual += iHoldNoteScores[hns] * iHoldScoreValue;
|
fActual += iHoldNoteScores[hns] * iHoldScoreValue;
|
||||||
|
LOG->Trace( "GetGrade actual: %i * %i", iHoldNoteScores[hns], iHoldScoreValue );
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG->Trace( "GetGrade: fActual: %f, fPossible: %d", fActual, iPossibleGradePoints );
|
LOG->Trace( "GetGrade: fActual: %f, fPossible: %d", fActual, iPossibleGradePoints );
|
||||||
|
|||||||
Reference in New Issue
Block a user