Fix scoping error.

This commit is contained in:
Steve Checkoway
2004-02-08 06:29:12 +00:00
parent 643fea4201
commit 5bdae36979
+2 -1
View File
@@ -214,7 +214,8 @@ void GameState::EndGame()
pMachineProfile->m_iCurrentCombo = 0;
CHECKPOINT;
for( int p=0; p<NUM_PLAYERS; p++ )
int p;
for( p=0; p<NUM_PLAYERS; p++ )
{
if( !IsHumanPlayer(p) )
continue;