"for( int p=0; p<NUM_PLAYERS; p++ )" -> "FOREACH_PlayerNumber( p )"

This commit is contained in:
Chris Danford
2004-05-24 06:10:11 +00:00
parent 6f75a3d920
commit ba93ee8469
38 changed files with 161 additions and 161 deletions
+2 -2
View File
@@ -176,7 +176,7 @@ void ScreenPlayerOptions::UpdateDisqualified()
// save current player options
PlayerOptions po[2];
{
for( int p=0; p<NUM_PLAYERS; p++ )
FOREACH_PlayerNumber( p )
{
po[p] = GAMESTATE->m_PlayerOptions[p];
}
@@ -186,7 +186,7 @@ void ScreenPlayerOptions::UpdateDisqualified()
ScreenOptionsMaster::ExportOptions();
{
for( int p=0; p<NUM_PLAYERS; p++ )
FOREACH_PlayerNumber( p )
{
bool bIsHandicap = GAMESTATE->IsDisqualified((PlayerNumber)p);