Style cleanup.

This commit is contained in:
Steve Checkoway
2007-04-22 00:14:36 +00:00
parent 9e186e22bc
commit 3d11ecd137
+3 -3
View File
@@ -28,7 +28,7 @@ void ScreenNetEvaluation::Init()
m_bHasStats = false;
m_iCurrentPlayer = 0;
FOREACH_PlayerNumber (pn)
FOREACH_ENUM( PlayerNumber, pn )
if( GAMESTATE->IsPlayerEnabled(pn) )
m_pActivePlayer = pn;
@@ -93,7 +93,7 @@ void ScreenNetEvaluation::MenuLeft( const InputEventPlus &input )
void ScreenNetEvaluation::MenuUp( const InputEventPlus &input )
{
if ( (m_iActivePlayers == 0) || !m_bHasStats )
if( m_iActivePlayers == 0 || !m_bHasStats )
return;
COMMAND( m_textUsers[m_iCurrentPlayer], "DeSel" );
@@ -109,7 +109,7 @@ void ScreenNetEvaluation::MenuRight( const InputEventPlus &input )
void ScreenNetEvaluation::MenuDown( const InputEventPlus &input )
{
if ( (m_iActivePlayers == 0) || !m_bHasStats )
if ( m_iActivePlayers == 0 || !m_bHasStats )
return;
COMMAND( m_textUsers[m_iCurrentPlayer], "DeSel" );