const fix

This commit is contained in:
Glenn Maynard
2003-12-18 03:22:58 +00:00
parent 0967eb44e3
commit 8bea794083
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ void StageStats::AddStats( const StageStats& other )
} }
} }
Grade StageStats::GetGrade( PlayerNumber pn ) Grade StageStats::GetGrade( PlayerNumber pn ) const
{ {
ASSERT( GAMESTATE->IsPlayerEnabled(pn) ); // shouldn't be calling this is player isn't joined! ASSERT( GAMESTATE->IsPlayerEnabled(pn) ); // shouldn't be calling this is player isn't joined!
+1 -1
View File
@@ -24,7 +24,7 @@ struct StageStats
{ {
StageStats(); StageStats();
void AddStats( const StageStats& other ); // accumulate void AddStats( const StageStats& other ); // accumulate
Grade GetGrade( PlayerNumber pn ); Grade GetGrade( PlayerNumber pn ) const;
bool OnePassed() const; bool OnePassed() const;
bool AllFailed() const; bool AllFailed() const;
float GetPercentDancePoints( PlayerNumber pn ) const; float GetPercentDancePoints( PlayerNumber pn ) const;