fmin() was giving grief to MSVC, switch to std::min()

This commit is contained in:
Dick Hollenbeck 2012-09-20 08:22:33 -05:00
parent 44ced95e66
commit 136d84ef3c
1 changed files with 2 additions and 2 deletions

View File

@ -86,12 +86,12 @@ void GenDrillMapFile( BOARD* aPcb, FILE* aFile, const wxString& aFullFileName,
int ypagesize_for_board = (int) (pageSizeIU.y * 0.6);
double Yscale = (double)( ypagesize_for_board - margin ) / bbbox.GetHeight();
scale = fmin( Xscale, Yscale );
scale = std::min( Xscale, Yscale );
// Experience shows the scale should not to large, because texts
// create problem (can be to big or too small).
// So the scale is clipped at 3.0;
scale = fmin( scale, 3.0 );
scale = std::min( scale, 3.0 );
offset.x = (int) ( (double) bbbox.Centre().x - ( pageSizeIU.x / 2.0 ) / scale );
offset.y = (int) ( (double) bbbox.Centre().y -