Browse Source

Fix shadowing variable.

cthulhu
Night Owl 7 years ago
parent
commit
7979101020
  1. 2
      dlls/world.cpp

2
dlls/world.cpp

@ -564,7 +564,7 @@ void CWorld::Precache( void ) @@ -564,7 +564,7 @@ void CWorld::Precache( void )
// 63 testing
LIGHT_STYLE( 63, "a" );
for( int i = 0; i < (int)ARRAYSIZE( gDecals ); i++ )
for( i = 0; i < (int)ARRAYSIZE( gDecals ); i++ )
gDecals[i].index = DECAL_INDEX( gDecals[i].name );
// init the WorldGraph.

Loading…
Cancel
Save