Commit 878df9a7 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

fnt2bdf: Remove variable dpi which is not really used from dump_bdf_hdr.

parent cfd18661
......@@ -445,7 +445,7 @@ int l_ascent = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfAscent);
if( l_nameoffset &&
l_nameoffset < return_data_value(dfLong, &cpe_font_struct->hdr.dfSize) )
{
int dpi, point_size;
int point_size;
char* lpFace = (char*)(file_buffer + l_nameoffset), *lpChar;
short tmWeight = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfWeight);
......@@ -479,7 +479,6 @@ int l_ascent = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfAscent);
/* y extents */
point_size = 10 * return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPoints );
dpi = (l_cellheight * 720) / point_size;
fprintf(fs, "%d-%d-%d-%d-",l_cellheight, point_size,
return_data_value (dfShort, &cpe_font_struct->hdr.fi.dfHorizRes),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment