name cleanup: PLAY_MODE_ARCADE -> PLAY_MODE_REGULAR

This commit is contained in:
Chris Danford
2004-06-11 06:05:35 +00:00
parent ae65e34dbd
commit 51366df8cc
15 changed files with 35 additions and 37 deletions
+2 -2
View File
@@ -898,7 +898,7 @@ bool GameState::HasEarnedExtraStage() const
if( !PREFSMAN->m_bAllowExtraStage )
return false;
if( this->m_PlayMode != PLAY_MODE_ARCADE )
if( this->m_PlayMode != PLAY_MODE_REGULAR )
return false;
if( (this->IsFinalStage() || this->IsExtraStage()) )
@@ -1333,7 +1333,7 @@ void GameState::GetRankingFeats( PlayerNumber pn, vector<RankingFeat> &asFeatsOu
CHECKPOINT_M(ssprintf("PlayMode %i",this->m_PlayMode));
switch( this->m_PlayMode )
{
case PLAY_MODE_ARCADE:
case PLAY_MODE_REGULAR:
{
CHECKPOINT;
unsigned i, j;