Another small fix from Francesco.
This commit is contained in:
parent
fc26ecd9d3
commit
2f41b184be
|
@ -1,6 +1,7 @@
|
|||
2001-05-08 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
|
||||
|
||||
* src/pcfdriver.c: Fixed incorrect bitmap width computation.
|
||||
* src/pcfdriver.c (PCF_Load_Glyph): Fixed incorrect bitmap width
|
||||
computation.
|
||||
|
||||
2001-05-08 David Turner <david@freetype.org>
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ THE SOFTWARE.
|
|||
}
|
||||
}
|
||||
|
||||
slot->bitmap_left = 0;
|
||||
slot->bitmap_left = metric->leftSideBearing;
|
||||
slot->bitmap_top = metric->ascent;
|
||||
|
||||
slot->metrics.horiAdvance = metric->characterWidth << 6 ;
|
||||
|
|
Loading…
Reference in New Issue