Gerber files creation: fix an incorrect structured comment ('*' was missing at the end of line)

This commit is contained in:
jean-pierre charras 2017-07-25 11:50:24 +02:00
parent 2d5607a11d
commit 6d52987928
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ void AddGerberX2Header( PLOTTER * aPlotter,
if( aBoard->GetPlotOptions().GetUseAuxOrigin() && auxOrigin.x && auxOrigin.y )
registration_id.Printf( "PX%xPY%x", auxOrigin.x, auxOrigin.y );
text.Printf( "%%TF.SameCoordinates,%s%%", registration_id.GetData() );
text.Printf( "%%TF.SameCoordinates,%s*%%", registration_id.GetData() );
aPlotter->AddLineToHeader( makeStringCompatX1( text, aUseX1CompatibilityMode ) );
}