7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 22:55:30 +00:00

Re-add accidentally removed increment

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20069
This commit is contained in:
Jon Evans 2025-02-23 22:41:18 -05:00
parent 03af293683
commit 4123f75d5a

View File

@ -434,7 +434,7 @@ bool GENDRILL_WRITER_BASE::GenDrillReportFile( const wxString& aFullFileName )
for( PCB_LAYER_ID layer : cu.Seq() )
{
out.Print( 0, " L%-2d: %-25s %s\n",
conventional_layer_num,
conventional_layer_num++,
TO_UTF8( m_pcb->GetLayerName( layer ) ),
layerName( layer ).c_str() ); // generic layer name
}