From df5c6b2b8392a5344718301fa0caf1a042e004f1 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 17 Jan 2006 05:25:26 +0000 Subject: [PATCH] cleanup --- stepmania/src/Trail.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stepmania/src/Trail.h b/stepmania/src/Trail.h index d7561fafdd..fa443f3d9e 100644 --- a/stepmania/src/Trail.h +++ b/stepmania/src/Trail.h @@ -27,13 +27,13 @@ struct TrailEntry Song* pSong; Steps* pSteps; CString Modifiers; - AttackArray Attacks; + AttackArray Attacks; bool bSecret; // show "???" /* These represent the meter and difficulty used by the course to pick the * steps; if you want the real difficulty and meter, look at pSteps. */ - int iLowMeter; - int iHighMeter; + int iLowMeter; + int iHighMeter; Difficulty dc; bool operator== ( const TrailEntry &rhs ) const; bool operator!= ( const TrailEntry &rhs ) const { return !(*this==rhs); } @@ -43,10 +43,10 @@ struct TrailEntry class Trail { public: - StepsType m_StepsType; + StepsType m_StepsType; CourseDifficulty m_CourseDifficulty; - vector m_vEntries; - int m_iSpecifiedMeter; // == -1 if no meter specified + vector m_vEntries; + int m_iSpecifiedMeter; // == -1 if no meter specified mutable bool m_bRadarValuesCached; mutable RadarValues m_CachedRadarValues;