From e0241d6f910c6fc670c7de474b15c1a1735157a0 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 25 Feb 2008 09:09:55 +0000 Subject: [PATCH] reduce num entries for faster loading --- stepmania/src/Workout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Workout.cpp b/stepmania/src/Workout.cpp index 583e8278a6..e812ec71fb 100644 --- a/stepmania/src/Workout.cpp +++ b/stepmania/src/Workout.cpp @@ -106,7 +106,7 @@ void Workout::GenerateCourse( Course &out ) // Choose a large number of course entries. We may loop if the goal // is not yet reached, and it would be bad to play the same sequence // of songs over again. - const int iNumCourseEntries = 60; // choose a multiple of the intervals above, or else the WorkoutGraph will get out of sync with the actual songs. + const int iNumCourseEntries = 6*5; // choose a multiple of the intervals above, or else the WorkoutGraph will get out of sync with the actual songs. vector viMeter; GetEstimatedMeters( iNumCourseEntries, viMeter );