From e7c5b141965f6fbab225f90d16c91b0d66192d26 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 30 Jul 2006 11:36:18 +0000 Subject: [PATCH] Remove timing code. --- stepmania/src/Course.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index ec73a5b31c..60cdd0a6ae 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -420,7 +420,7 @@ bool Course::GetTrailUnsorted( StepsType st, CourseDifficulty cd, Trail &trail ) case DIFFICULTY_CHALLENGE: return false; } - RageTimer timer; + // // Construct a new Trail, add it to the cache, then return it. // @@ -623,7 +623,6 @@ bool Course::GetTrailUnsorted( StepsType st, CourseDifficulty cd, Trail &trail ) if( m_iCustomMeter[cd] != -1 ) trail.m_iSpecifiedMeter = m_iCustomMeter[cd]; - LOG->Trace( "GetTrailUnsorted() took %f seconds.", timer.Ago() ); /* If the course difficulty never actually changed anything, then this difficulty * is equivalent to DIFFICULTY_MEDIUM; it doesn't exist. */ return bCourseDifficultyIsSignificant;