From 7158e8815e07f69e5a67a8db9b0c9a1dc354a169 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 23 Jun 2003 22:16:44 +0000 Subject: [PATCH] more comment fixes --- stepmania/src/ScoreKeeperMAX2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index a481d769be..24911bf018 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -105,9 +105,9 @@ void ScoreKeeperMAX2::OnNextSong( int iSongInCourseIndex, Notes* pNotes ) } else { - /* When we have lots of songs, the scale above has two problems. First, - * it biases too much: in a course with 50 songs, the first song is worth - * 80k, the last 4mil, which is too much of a difference. + /* When we have lots of songs, the scale above biases too much: in a + * course with 50 songs, the first song is worth 80k, the last 4mil, which + * is too much of a difference. * * With this, each song in a 50-song course will be worth 2mil. */ m_iMaxPossiblePoints = 100000000 / numSongsInCourse;