This commit is contained in:
Glenn Maynard
2006-09-13 09:16:57 +00:00
parent 9da4770fe0
commit 4a8ba3a515
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -63,9 +63,9 @@ static void GetUsedGameInputs( vector<GameInput> &vGameInputsOut )
continue;
FOREACH_PlayerNumber( pn )
{
for( int i=0; i<(*style)->m_iColsPerPlayer; i++ )
for( int iCol=0; iCol<(*style)->m_iColsPerPlayer; ++iCol )
{
GameInput gi = (*style)->StyleInputToGameInput( i, pn );
GameInput gi = (*style)->StyleInputToGameInput( iCol, pn );
if( gi.IsValid() )
{
vGIs.insert( gi );