fix scoping error.

This commit is contained in:
Steve Checkoway
2003-12-18 04:37:52 +00:00
parent 1c44cd23c8
commit 354e95efb1
+2 -1
View File
@@ -808,7 +808,8 @@ void ScreenEvaluation::CommitScores( const StageStats &stageStats, int iPersonal
if( !GAMESTATE->m_SongOptions.m_bSaveScore )
return;
for( int p=0; p<NUM_PLAYERS; p++ )
int p;
for( p=0; p<NUM_PLAYERS; p++ )
{
if( !GAMESTATE->IsHumanPlayer(p) )
continue;