NC drill (Excellon) exporter: remove useless M71 / M72 lines.

They are probably incorrect in V2 format, and the format is already specified.
This commit is contained in:
jean-pierre charras 2018-11-11 19:57:16 +01:00
parent 0d3637c2ee
commit fcafe5362f
1 changed files with 0 additions and 9 deletions

View File

@ -187,15 +187,6 @@ int EXCELLON_WRITER::createDrillFile( FILE* aFile )
fputs( "G90\n", m_file ); // Absolute mode
fputs( "G05\n", m_file ); // Drill mode
// Units :
if( !m_minimalHeader )
{
if( m_unitsMetric )
fputs( "M71\n", m_file ); /* M71 = metric mode */
else
fputs( "M72\n", m_file ); /* M72 = inch mode */
}
/* Read the hole file and generate lines for normal holes (oblong
* holes will be created later) */
int tool_reference = -2;