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 76adf7dbe8
commit 9610f8f208
1 changed files with 0 additions and 9 deletions

View File

@ -182,15 +182,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;