cleanup: "(PlayerNumber)" -> ""

This commit is contained in:
Chris Danford
2005-01-31 03:18:46 +00:00
parent 3674f5a507
commit a24bd3014c
18 changed files with 46 additions and 54 deletions
+4 -4
View File
@@ -573,10 +573,10 @@ void Background::Update( float fDeltaTime )
FOREACH_PlayerNumber( p )
{
if( IsDangerPlayerVisible((PlayerNumber)p) )
if( IsDangerPlayerVisible(p) )
m_DangerPlayer[p].Update( fDeltaTime );
if( IsDeadPlayerVisible((PlayerNumber)p) )
if( IsDeadPlayerVisible(p) )
m_DeadPlayer[p].Update( fDeltaTime );
}
@@ -628,9 +628,9 @@ void Background::DrawPrimitives()
FOREACH_PlayerNumber( p )
{
if( IsDangerPlayerVisible((PlayerNumber)p) )
if( IsDangerPlayerVisible(p) )
m_DangerPlayer[p].Draw();
if( IsDeadPlayerVisible((PlayerNumber)p) )
if( IsDeadPlayerVisible(p) )
m_DeadPlayer[p].Draw();
}
}