sfnt2fnt: Remove variable descent which is not really used from fill_fontinfo.
This commit is contained in:
parent
2af5528a0c
commit
0151175127
|
@ -365,7 +365,7 @@ static struct fontinfo *fill_fontinfo( const char *face_name, int ppem, int enc,
|
||||||
unsigned char def_char, int avg_width )
|
unsigned char def_char, int avg_width )
|
||||||
{
|
{
|
||||||
FT_Face face;
|
FT_Face face;
|
||||||
int ascent = 0, il, el, descent = 0, width_bytes = 0, space_size, max_width = 0;
|
int ascent = 0, il, el, width_bytes = 0, space_size, max_width = 0;
|
||||||
BYTE left_byte, right_byte, byte;
|
BYTE left_byte, right_byte, byte;
|
||||||
DWORD start;
|
DWORD start;
|
||||||
int i, x, y, x_off, x_end, first_char;
|
int i, x, y, x_off, x_end, first_char;
|
||||||
|
@ -413,7 +413,6 @@ static struct fontinfo *fill_fontinfo( const char *face_name, int ppem, int enc,
|
||||||
if(size_table->hori.ascender - size_table->hori.descender == ppem)
|
if(size_table->hori.ascender - size_table->hori.descender == ppem)
|
||||||
{
|
{
|
||||||
ascent = size_table->hori.ascender;
|
ascent = size_table->hori.ascender;
|
||||||
descent = -size_table->hori.descender;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
size_table++;
|
size_table++;
|
||||||
|
@ -431,7 +430,6 @@ static struct fontinfo *fill_fontinfo( const char *face_name, int ppem, int enc,
|
||||||
if(FT_Load_Char(face, 0xc5, FT_LOAD_DEFAULT))
|
if(FT_Load_Char(face, 0xc5, FT_LOAD_DEFAULT))
|
||||||
error("Can't find Aring\n");
|
error("Can't find Aring\n");
|
||||||
ascent = face->glyph->metrics.horiBearingY >> 6;
|
ascent = face->glyph->metrics.horiBearingY >> 6;
|
||||||
descent = ppem - ascent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
start = sizeof(FNT_HEADER);
|
start = sizeof(FNT_HEADER);
|
||||||
|
|
Loading…
Reference in New Issue