Fix broken refactor

Don't trust the automatic refactor.  It misses the strangest things
This commit is contained in:
Seth Hillbrand 2022-11-08 20:30:07 -08:00
parent 3a15fa5e0f
commit 8b7d997a6d
1 changed files with 1 additions and 1 deletions

View File

@ -2377,7 +2377,7 @@ void PCB_PAINTER::draw( const ZONE* aZone, int aLayer )
// Draw holes
int holes_count = outline->HoleCount( ii );
for( int jj = 0; ii < holes_count; ++jj )
for( int jj = 0; jj < holes_count; ++jj )
m_gal->DrawPolyline( outline->CHole( ii, jj ) );
}